Condividi tramite


bitset::operator[]

Restituisce un riferimento a un bit in una posizione specificata in un bitset se il bitset è modificabile; in caso contrario, restituisce il valore di colore in quella posizione.

bool operator[](
   size_t _Pos
) const;
reference operator[](
   size_t _Pos
);

Parametri

  • _Pos
    La posizione che individua il bit di l bitset.

Note

Durante la compilazione con _SECURE_SCL 1, un errore di runtime viene visualizzato se si tenta di accedere a un elemento all'esterno dei limiti di bitset. Per ulteriori informazioni, vedere Iteratori verificati.

Esempio

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

Output

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.

Requisiti

bitset <diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe bitset