다음을 통해 공유


bitset::test

지정 된 위치는 bitset에 비트가 1로 설정 되어 있는지 여부를 테스트 합니다.

bool test(
   size_t _Pos,
) const;

매개 변수

  • _Pos
    Bitset 해당 값을 테스트 하는 비트의 위치입니다.

반환 값

true 이면 1; 인수 위치로 지정 하는 비트를 설정 하면 그렇지 않으면 거짓.

설명

멤버 함수를 throw 된 out_of_range bitset 크기가 예외는 인수에 지정 된 위치 보다 작거나.

예제

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

int main( )
{
   using namespace std;

   bitset<5> b1 ( 6 );
   bool b;
   bitset<5>::element_type e;

   cout << "Original bitset b1(6) is: ( "<< b1 << " )"
        << endl;
   cout << "Note: positions in a bitset are numbered\n"
         << " from the right starting with 0.\n" << endl;

   b = b1.test ( 3 );

   if ( b )
      cout << "The bit at position 3 of bitset b1 "
           << "has a value of 1." << endl;
   else
      cout << "The bit at position 3 of bitset b1 "
           << "has a value of 0." << endl;

   b1[3] = 1;
   cout << "Bitset b1 modified by b1[3] = 1 is: ( "<< b1 << " )"
        << endl;
   
   e = b1.test ( 3 );
   if ( e )
      cout << "The bit at position 3 of bitset b1 "
           << "has a value of 1." << endl;
   else
      cout << "The bit at position 3 of bitset b1 "
           << "has a value of 0." << endl;
}
  
  
  

요구 사항

헤더: <bitset>

네임 스페이스: std

참고 항목

참조

bitset Class