📅  最后修改于: 2020-10-17 06:36:03             🧑  作者: Mango
operator[]
函数C++ STL bitset.operator[]用于访问值到位集的任何索引。
boolean operator [] (int pos);
reference operator[] (int pos);
pos:参数索引指定要分配值的位置。
该函数将值返回到索引处的位。
#include
#include
using namespace std;
int main()
{
bitset<4> b;
b[1]=1;
b[2]=b[1];
cout<< "b :" << b;
return 0;
}
输出:
b :0110
#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