다음을 통해 공유


bitset::operator|=

에 포함 된 bitsets의 비트 조합을 수행 OR 작업.

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

매개 변수

  • _Right
    Bitset 대상 bitset와 비트 결합 하는.

반환 값

결과 비트에서 수정 된 대상 bitset 포함 OR 작업과 bitset 매개 변수로 지정 합니다.

설명

두 비트 결합 하 여 포괄 OR 연산자 반환 true 비트를 하나 이면 true. 두 비트가 되 면 거짓, 그 조합 반환 거짓.

Bitsets 비트와 포괄 결합할 같은 크기의 있어야 OR 연산자로 연산자 함수.

예제

// 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;
}
  
  
  
  

요구 사항

헤더: <bitset>

네임 스페이스: std

참고 항목

참조

bitset Class