Partilhar via


bitset::reset

Redefine todos os bits em um bitset a 0 redefine ou um bit em uma posição especificada como 0.

bitset<N>& reset( ); 
bitset<N>& reset( 
   size_t _Pos 
);

Parâmetros

  • _Pos
    A posição de bit em bitset ser redefinido para 0.

Valor de retorno

Uma cópia de bitset para a função de membro foi invocada.

Comentários

A segunda função de membro gerará uma exceção de out_of_range se a posição especificada é maior que o tamanho de bitset.

Exemplo

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

int main( )
{
   using namespace std;

   bitset<5> b1 ( 13 );
   cout << "The set of bits in bitset<5> b1(13) is: ( "<< b1 << " )"
        << endl;

   bitset<5> b1r3;
   b1r3 = b1.reset( 2 );
   cout << "The collecion of bits obtained from resetting the\n"
        << " third bit of bitset b1 is: ( "<< b1r3 << " )" 
        << endl;

   bitset<5> b1r;
   b1r = b1.reset( );
   cout << "The collecion of bits obtained from resetting all\n"
        << " the elements of the bitset b1 is: ( "<< b1r << " )"
        << endl;
}
  

Requisitos

bitset <deCabeçalho: >

Namespace: std

Consulte também

Referência

Classe bitset