bitset::operator<<
Bitset에 비트가 왼쪽으로 지정한 인덱스 만큼 이동 하 고는 새 bitset에 결과 반환 합니다.
bitset<N> operator<<(
size_t _Pos
) const;
매개 변수
- _Pos
수 왼쪽 비트 bitset에 이동할 수 있는 위치입니다.
반환 값
수정 된 bitset 비트 왼쪽으로 정해진 위치 이동 합니다.
설명
멤버 연산자 함수를 반환 합니다. bitset(*이) << = pos 위치 << = 는 bitset에 비트가 왼쪽으로 지정한 인덱스 만큼 이동 하 고 대상된 bitset에 결과 반환 합니다.
예제
// bitset_op_LS.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
int main( )
{
using namespace std;
bitset<5> b1 ( 7 );
cout << "The bitset b1 is: ( "<< b1 << " )." << endl;
bitset<5> b2;
b2 = b1 << 2;
cout << "After shifting the bits 2 positions to the left,\n"
<< " the bitset b2 is: ( "<< b2 << " )."
<< endl;
bitset<5> b3 = b2 >> 1;
cout << "After shifting the bits 1 position to the right,\n"
<< " the bitset b3 is: ( " << b3 << " )."
<< endl;
}
Output
The bitset b1 is: ( 00111 ).
After shifting the bits 2 positions to the left,
the bitset b2 is: ( 11100 ).
After shifting the bits 1 position to the right,
the bitset b3 is: ( 01110 ).
요구 사항
헤더: <bitset>
네임 스페이스: std