bitset::operator[]

如果bitset可修改,返回对位在bitset中的指定位置;否则,它返回位的值在该位置。

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

参数

  • _Pos
    位于bitset中的位置位。

备注

当编译_SECURE_SCL 1时,一个运行时将发生错误,如果尝试访问在bitset范围之外的一个元素。 有关更多信息,请参见经过检查的迭代器

示例

// 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.

要求

标头: <bitset>

命名空间: std

请参见

参考

bitset Class