C++ Bitset 库 - bitset() 函数
描述
C++ 构造函数std::bitset::bitset() 构造 Bitset 容器并将其初始化为零。
声明
以下是 std::bitset::bitset() 构造函数形式 std::bitset 头的声明。
C++98
bitset();
C++11
constexpr bitset() noexcept;
参数
None
返回值
构造函数从不返回值。
异常
此成员函数从不抛出异常。
示例
以下示例显示了 std::bitset::bitset() 构造函数的用法。
#include <iostream> #include <bitset> using namespace std; int main(void) { bitset<4>b; cout << b << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
0000