Libreria C ++ Bitset - operatore ^ = Funzione

Descrizione

La funzione C ++ std::bitset::operator^= esegue un'operazione XOR bit per bit sull'oggetto bitset corrente.

Dichiarazione

Di seguito è riportata la dichiarazione per std :: bitset :: operator ^ = function form std :: bitset header.

C ++ 98

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

C ++ 11

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

Parametri

other - Un altro oggetto bitset.

Valore di ritorno

Restituisce questo puntatore.

Eccezioni

Questa funzione membro non genera mai eccezioni.

Esempio

L'esempio seguente mostra l'utilizzo della funzione 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;
}

Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:

0101