다음을 통해 공유


bitset::operator^=

단독으로 bitsets의 비트 조합을 수행 OR 작업.

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

매개 변수

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

반환 값

결과에서 배타적 수정 된 대상 bitset OR 작업과 bitset 매개 변수로 지정 합니다.

설명

두 비트 결합 단독으로 또는 연산자 반환 true 하나 이상 있으면 되지만 둘 다, 비트 true. 그렇지 않으면 그 조합을 반환 거짓.

Bitsets 비트 배타적으로 결합 하는 같은 크기의 있어야 OR 연산자로 연산자 함수.

예제

// bitset_op_bitwiseOR.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 exclusive 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