📜  C++ STL-bitset.operator[]函数

📅  最后修改于: 2020-10-17 06:36:03             🧑  作者: Mango

C++ STL bitset.operator[]函数

C++ STL bitset.operator[]用于访问值到位集的任何索引。

句法

boolean operator [] (int pos);
reference operator[] (int pos);

参数

pos:参数索引指定要分配值的位置。

返回值

该函数将值返回到索引处的位。

例子1

#include 
#include 
using namespace std;
int main()
{
bitset<4> b;
b[1]=1;
b[2]=b[1];
cout<< "b :" << b;
return 0;
}

输出:

b :0110

例子2

#include 
#include 
using namespace std;

int main()
{
bitset<4> b(string("1001"));
b[1]=1;
b[2]=b[1];
cout<< "b :" << b;
return 0;
}

输出:

b :1111