Partilhar via


bitset::none

Testa se nenhum bit foi definido como 1 em um objeto de bitset.

bool none( ) const;

Valor de retorno

true se nenhum bit em bitset foi definido como 1; false se pelo menos um bit for definido como 1.

Exemplo

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

Requisitos

bitset <deCabeçalho: >

Namespace: std

Consulte também

Referência

Classe bitset