Compartir a través de


bitset::reset

Restablece todos los bits en un bitset a 0 o restaurar un bit en una posición especificada a 0.

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

Parámetros

  • _Pos
    Posición de bit del bitset que se reinicializará a 0.

Valor devuelto

Una copia de bitset para el cual la función miembro se invoca.

Comentarios

La segunda función miembro produce una excepción de out_of_range si la posición especificada es mayor que el tamaño de bitset.

Ejemplo

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

Espacio de nombres: std

Vea también

Referencia

bitset (Clase)