📅  最后修改于: 2020-10-17 06:32:27             🧑  作者: Mango
C++ bitset set()函数用于将所有位设置为1。如果仅传递单个参数,则它将该特定索引处的位设置为1。
set(int index, bool Val);
set();
index:此参数指定必须设置该位的位置。该参数是可选的。
val:此参数指定必须在索引处设置的布尔值。该参数是可选的。
它不返回任何值。
#include
#include
using namespace std;
int main()
{
bitset<4> b(string("1001"));
cout<< "before applying set method : " << b <<'\n';
cout<< "after applying reset method : " <
输出:
before applying set method : 1001
after applying reset method : 1111
#include
#include
using namespace std;
int main()
{
// Initialization of bitset
bitset<4> b1(string("1100"));
bitset<6> b2(string("100100"));
// Function that resets all bits
cout<< "Before applying set() function: "<< b1 <
输出:
Before applying set() function: 1100
After applying set(1) function: 1110
Before applying set() function: 100100
After applying set(2, 0) and set(4, 1) function: 110000