共用方式為


bitset::reset

會重設bitset的所有位元設為0或在指定位置重設為0位元。

bitset<N>& reset( ); 
bitset<N>& reset(
   size_t _Pos
);

參數

  • _Pos
    位元的位置在要重設之bitset設為0。

傳回值

成員函式叫用 bitset 的複本。

備註

第二 + 成成員函式中擲回 out_of_range 例外狀況,如果指定的位置。bitset 的大小大於。

範例

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

int main( )
{
   using namespace std;

   bitset<5> b1 ( 13 );
   cout << "The set of bits in bitset<5> b1(13) is: ( "<< b1 << " )"
        << endl;

   bitset<5> b1r3;
   b1r3 = b1.reset( 2 );
   cout << "The collecion of bits obtained from resetting the\n"
        << " third bit of bitset b1 is: ( "<< b1r3 << " )" 
        << endl;

   bitset<5> b1r;
   b1r = b1.reset( );
   cout << "The collecion of bits obtained from resetting all\n"
        << " the elements of the bitset b1 is: ( "<< b1r << " )"
        << endl;
}
  

需求

標題: <bitset>

命名空間: std

請參閱

參考

bitset Class