operator| (<bitset>)
執行兩 bitsets 之間執行位元 OR 。
template <size_t size>
bitset<size> operator|(
const bitset<size>& _Left,
const bitset<size>& _Right
);
參數
_Left
個別項目將位元結合 OR的第一個 bitsets。_Right
個別項目將位元結合 OR的第二個 valarrays。
傳回值
項目是對 _Left 的對應元素的 OR 作業的結果和 _Right的 bitset。
範例
// bitset_or.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
#include <string>
using namespace std;
int main()
{
bitset<4> b1 ( string("0101") );
bitset<4> b2 ( string("0011") );
bitset<4> b3 = b1 | b2;
cout << "bitset 1: " << b1 << endl;
cout << "bitset 2: " << b2 << endl;
cout << "bitset 3: " << b3 << endl;
}
需求
標題: <bitset>
命名空間: std