共用方式為


bitset::operator>>=

將 bitset 的位元向右位置的指定數目並將結果傳回目標的 bitset。

bitset<N>& operator>>=(
   size_t _Pos
);

參數

  • _Pos
    位置數目右邊的位元會在 bitset 要移位。

傳回值

修改過的目標 bitset,讓位元移位的右邊位置所需數目。

備註

如果項目不存在傳送至這個位置時,函式清除位元為 0 的值。

範例

// bitset_op_RSE.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>

int main( )
{
   using namespace std;
   bitset<5> b1 ( 28 );
   cout << "The target bitset b1 is: ( "<< b1 << " )." << endl;

   b1 >>= 2;
   cout << "After shifting the bits 2 positions to the right,\n"
        << " the target bitset b1 becomes: ( "<< b1 << " )." 
        << endl;
}
  
  

需求

標題: <bitset>

命名空間: std

請參閱

參考

bitset Class