C++ bitset reset() 函数

C++ bitset reset() 函数

C++ bitset reset() 函数用于重置 bitset 的所有位。如果将索引作为参数传递,则会重置该索引处的位。

语法

reset();
reset(int index);

参数

index :它需要一个参数作为索引,但不是必需的。

返回值

此函数不返回任何值。

示例1

#include <iostream>
#include <bitset>
using namespace std;
int main()
{
bitset<4> b(string("1001"));
cout<< "before applying reset method : " << b <<'\n';
cout<< "after applying reset method : " <<b.reset();
return 0;
}

输出:

before applying reset method : 1001
after applying reset method : 0000

示例2

#include <iostream>
#include <bitset>
using namespace std;
int main()
{
bitset<4> b(string("1001"));
cout<< "before apllying reset method : " << b <<'\n';
cout<< "after apllying reset method : " <<b.reset(3) <<'\n';
cout<< "after apllying reset method : " <<b.reset(0);
return 0;
}

输出:

before applying reset method : 1001
after applying reset method : 0001
after applying reset method : 0000

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程