bitset::operator&=
논리와 bitsets의 비트 조합을 수행 AND 작업.
bitset<N>& operator&=(
const bitset<N>& _Right
);
매개 변수
- _Right
Bitset 대상 bitset와 비트 결합 하는.
반환 값
결과 비트에서 수정 된 대상 bitset AND 작업과 bitset 매개 변수로 지정 합니다.
설명
두 비트를 결합 하는 AND 연산자 반환 true 각 비트가 true 이면 그렇지 않으면 그 조합을 반환 거짓.
Bitsets의 크기와 비트 결합 하 여야는 AND 연산자로 연산자 함수.
예제
// bitset_op_bitwise.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 AND combination,\n"
<< " the target bitset b1 becomes: ( "<< b1 << " )."
<< endl;
// Note that the parameter-specified bitset is 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