Libreria C ++ Bitset - operator & = Function
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("1000");
/* Turn off all bits except 3rd bit */
b &= mask;
cout << b << endl;
return 0;
}
Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:
1000