bitset::operator|=
Wykonuje logiczną kombinacji bitsets z włącznie OR operacji.
bitset<N>& operator|=(
const bitset<N>& _Right
);
Parametry
- _Right
Bitset, który ma być bitowe połączone z bitset docelowej.
Wartość zwracana
Bitset zmodyfikowanych docelowej, która wynika z bitowym włącznie OR operacji bitset określony jako parametr.
Uwagi
Dwa bity połączone przez włącznie OR zwrotu operator true , jeśli co najmniej jeden z bitów jest true; Jeśli oba bity są false, ich kombinacja zwraca false.
Bitsets muszą być tego samego rozmiaru bitowe łączyć z włącznie OR operatora przez funkcję Członkowskie operatora.
Przykład
// 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;
}
Wymagania
Nagłówek: <bitset>
Obszar nazw: std