bitset::operator^=
執行位元bitsets的組合以獨佔 OR 作業。
bitset<N>& operator^=(
const bitset<N>& _Right
);
參數
- _Right
要結合位元目標 bitset 的 bitset。
傳回值
由於使用做為參數指定的bitset的位元(Bitwise)互斥 OR 作業已修改的目標bitset。
備註
如果至少有一個,,但不能同時指定兩者,位元為, true獨佔 OR 運算子結合的兩個位 true 傳回;否則,它們的組合中傳回 false。
Bitsets必須將位元的OR運算結合的相同大小以獨佔 OR 運算子使用成員運算子函式。
範例
// bitset_op_bitwiseOR.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
int main( )
{
using namespace std;
bitset<5> b1 ( 7 );
bitset<5> b2 ( 11 );
bitset<4> b3 ( 7 );
cout << "The target bitset b1 is: ( "<< b1 << " )." << endl;
cout << "The parameter bitset b2 is: ( "<< b2 << " )." << endl;
cout << endl;
b1 ^= b2;
cout << "After bitwise exclusive OR combination,\n"
<< " the target bitset b1 becomes: ( "<< b1 << " )."
<< endl;
// Note that the parameter-specified bitset in unchanged
cout << "The parameter bitset b2 remains: ( "<< b2 << " )."
<< endl;
// The following would cause an error because the bisets
// must be of the same size to be combined
// b1 |= b3;
}
需求
標題: <bitset>
命名空間: std