Aracılığıyla paylaş


bitset::operator[]

Bitset düzenlenerek ise biraz bir bitset belirtilen konumda bir başvuru döndürür; Aksi halde, o konumdaki bit değerini döndürür.

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

Parametreler

  • _Pos
    Pozisyon bit bitset içinde bulunuyor.

Notlar

1 _secure_scl ile derlerken bitset sınırları dışında bir öğe erişmeye çalışırsanız, bir çalışma zamanı hatası ortaya çıkar. Daha fazla bilgi için bkz. İşaretli Yineleyiciler.

Örnek

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

Çıktı

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.

Gereksinimler

Başlık: <bitset>

Namespace: std

Ayrıca bkz.

Başvuru

bitset Class