bitset::operator
Retorna uma referência a um bit em uma posição especificada em um bitset se o bitset é modificável; caso contrário, retornará o valor do bit em essa posição.
bool operator[](
size_t _Pos
) const;
reference operator[](
size_t _Pos
);
Parâmetros
- _Pos
A posição que encontra o bit no bitset.
Comentários
Para compilar com _SECURE_SCL 1, um erro de tempo de execução ocorrerá se você tentar acessar um elemento fora dos limites do bitset.Consulte Iteradores selecionados para maiores informações.
Exemplo
// bitset_op_REF.cpp
// compile with: /EHsc
#include <bitset>
#include <iostream>
int main( )
{
using namespace std;
bool b;
bitset<5> b1 ( 6 );
cout << "The initialized bitset<5> b1( 2 ) is: ( "<< b1 << " )."
<< endl;
int i;
for ( i = 0 ; i <= 4 ; i++ )
{
b = b1[ i ];
cout << " The bit in position "
<< i << " is " << b << ".\n";
}
}
Saída
The initialized bitset<5> b1( 2 ) is: ( 00110 ).
The bit in position 0 is 0.
The bit in position 1 is 1.
The bit in position 2 is 1.
The bit in position 3 is 0.
The bit in position 4 is 0.
Requisitos
Cabeçalho: <bitset>
namespace: STD