Cpp-standard-library-cpp-bitset-operator-bitwise-xor-self

提供:Dev Guides
移動先:案内検索

C ++ビットセットライブラリ-operator ^ =関数

説明

C ++関数 *std
bitset :: operator ^ =* は、現在のビットセットオブジェクトに対してビット単位のXOR演算を実行します。

宣言

以下は、std
bitsetヘッダーからの関数std :: bitset :: operator ^ =の宣言です。

C 98

bitset& operator^= (const bitset& other);

C 11

bitset& operator^= (const bitset& other) noexcept;

パラメーター

*other* -別のビットセットオブジェクト。

戻り値

`+ this +`ポインタを返します。

例外

このメンバー関数は例外をスローしません。

次の例は、std
bitset :: operator ^ =関数の使用法を示しています。
#include <iostream>
#include <bitset>

using namespace std;

int main(void) {
   bitset<4> b("1010");
   bitset<4> mask("1111");

  /*Invert each bit of bitset b*/
   b ^= mask;

   cout << b << endl;

   return 0;
}

上記のプログラムをコンパイルして実行すると、次の結果が生成されます-

0101