bitset::operator<<=
將 bitset 的位元向左移位置的指定數目並將結果傳回目標的 bitset。
bitset<N>& operator<<=(
size_t _Pos
);
參數
- _Pos
位置左邊的位元會在 bitset 要移位。
傳回值
修改過的目標 bitset,讓位元都會移出至左邊位置所需數目。
備註
如果項目不存在傳送至這個位置時,函式清除位元為 0 的值。
範例
// bitset_op_LSE.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
int main( )
{
using namespace std;
bitset<5> b1 ( 7 );
cout << "The target bitset b1 is: ( "<< b1 << " )." << endl;
b1 <<= 2;
cout << "After shifting the bits 2 positions to the left,\n"
<< " the target bitset b1 becomes: ( "<< b1 << " )."
<< endl;
}
需求
標題: <bitset>
命名空間: std