次の方法で共有


bitset::none

ビットが bitset のオブジェクトの 1 に設定されていない場合は、テスト。

bool none( ) const;

戻り値

bitset ビットが 1 に設定true ; 少なくとも 1 ビットが 1. に設定 false

使用例

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

int main( )
{
   using namespace std;

   bitset<5> b1 ( 6 );
   bool b, rb;

   cout << "Original bitset b1(6) is: ( " << b1 << " )"
        << endl;

   b = b1.none ( );

   if ( b )
      cout << "None of the bits in bitset b1 are set to 1."
           << endl;
   else
      cout << "At least one of the bits in bitset b1 is set to 1."
           << endl;
   
   bitset<5> rb1;
   rb1 = b1.reset ( );
   rb = rb1.none ( );
   if ( rb )
      cout << "None of the bits in bitset b1 are set to 1."
           << endl;
   else
      cout << "At least one of the bits in bitset b1 is set to 1."
           << endl;
}
  
  

必要条件

ヘッダー: <bitset>

名前空間: std

参照

関連項目

bitset Class