次の方法で共有


bitset::test

bitset の指定位置のビットが 1. に設定されているかどうかをテストします。

bool test(
   size_t _Pos,
) const;

パラメーター

  • _Pos
    値をテストする bitset ビットの位置。

戻り値

引数の位置で指定されたビットが 1 に設定されている場合true ; それ以外 false

解説

このメンバー関数は bitset のサイズである引数で指定した位置以下である out_of_range の例外をスローします。

使用例

// 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