operator^ (<bitset>)
執行位元在兩bitsets之間的 EXCLUSIVE-OR 。
template <size_t size>
bitset<size> operator^(
const bitset<size>& _Left,
const bitset<size>& _Right
);
參數
_Left
個別項目將使用位元的OR運算組合 EXCLUSIVE-OR的第一個bitsets。_Right
個別項目將使用位元的OR運算組合 EXCLUSIVE-OR的第二個兩valarrays。
傳回值
項目是在 _Left 對應項目的 EXCLUSIVE-OR 作業的結果和 _Right的bitset。
範例
// bitset_xor.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