Sdílet prostřednictvím


bitset::operator

Vrátí odkaz na bit na určené pozici v bitset Pokud je bitset měnit; v ostatních případech vrátí hodnotu bitu na této pozici.

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

Parametry

  • _Pos
    Pozice nalezení bit v rámci bitset.

Poznámky

Při kompilaci s _SECURE_SCL 1, objeví se chyba runtime při pokusu o přístup k prvku mimo hranice bitset.Další informace naleznete v tématu Zaškrtnuté iterátory.

Příklad

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

Výsledek

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.

Požadavky

Záhlaví: <bitset>

Obor názvů: std

Viz také

Referenční dokumentace

bitset Class