bitset::set
Define todos os bits em um bitset a 1 ou define um bit em uma posição especificada como 1.
bitset<N>& set( );
bitset<N>& set(
size_t _Pos,
bool _Val = true
);
Parâmetros
_Pos
A posição de bit em bitset atribuir um valor a ser definido._Val
O valor a ser atribuído ao bit na posição especificada.
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_set.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
int main( )
{
using namespace std;
bitset<5> b1 ( 6 );
cout << "The set of bits in bitset<5> b1(6) is: ( "<< b1 << " )"
<< endl;
bitset<5> b1s0;
b1s0 = b1.set( 0 );
cout << "The collecion of bits obtained from setting the\n"
<< " zeroth bit of bitset b1 is: ( "<< b1s0 << " )"
<< endl;
bitset<5> bs1;
bs1 = b1.set( );
cout << "The collecion of bits obtained from setting all the\n"
<< " elements of the bitset b1 is: ( "<< bs1 << " )"
<< endl;
}
Requisitos
bitset <deCabeçalho: >
Namespace: std