bitset::operator[]
如果 bitset 是可修改的,在 bitset 中指定位置的傳回以位元組的參考;否則,會傳回位元組的值在該位置。
bool operator[](
size_t _Pos
) const;
reference operator[](
size_t _Pos
);
參數
- _Pos
在中的位置 bitset 位元。
備註
當以 _SECURE_SCL 1 編譯時,執行時會發生錯誤,如果您嘗試存取 bitset 界限之外的項目。 如需詳細資訊,請參閱檢查過的 Iterator。
範例
// 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