다음을 통해 공유


bitset::reset

Bitset에 비트가 모두 0으로 다시 설정 하거나 지정 된 위치에 0 비트 다시 설정 합니다.

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

매개 변수

  • _Pos
    0으로 되돌리려면 bitset에 비트가의 위치입니다.

반환 값

멤버 함수를 호출한 bitset의 복사본입니다.

설명

두 번째 멤버 함수를 throw는 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