Libreria C ++ Bitset - operator | = Funzione

Descrizione

La funzione C ++ std::bitset::operator|= esegue un'operazione OR 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("0101");

   /* Turn on 0th and 2nd bit */
   b |= mask;

   cout << b << endl;

   return 0;
}

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

1111