Partilhar via


bitset::test

Testa se o bit em uma posição especificada em um bitset é definido como 1.

bool test(
   size_t _Pos,
) const;

Parâmetros

  • _Pos
    A posição do bit no bitset ser testado para seu valor.

Valor de retorno

true se o bit especificado pela posição do argumento é definido como 1; caso contrário, false.

Comentários

A função de membro gera uma exceção de out_of_range que é o tamanho de bitset é menor ou igual a posição especificada no argumento.

Exemplo

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

Requisitos

Cabeçalho: <bitset>

namespace: STD

Consulte também

Referência

bitset Class