Partilhar via


bitset::operator|=

Executa uma combinação de bit a bit de bitsets com a operação inclusiva de OR .

bitset<N>& operator|=( 
   const bitset<N>& _Right 
);

Parâmetros

  • _Right
    O bitset que é bit a bit ser combinado com o bitset de destino.

Valor de retorno

O bitset alterado de destino que resulta da operação bit a bit inclusiva de OR com o bitset especificado como um parâmetro.

Comentários

Dois bits combinadas pelo operador OR inclusivo de OR retornam true se pelo menos um dos bits é true; se ambos os bits forem false, a combinação retornará false.

Bitsets deve ser do mesmo tamanho a ser bit a bit combinado com o operador OR inclusivo de OR pela função do operador de membro.

Exemplo

// bitset_op_BIO.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 inclusive 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;
}
  

Requisitos

bitset <deCabeçalho: >

Namespace: std

Consulte também

Referência

Classe bitset