C++ Bitset 库 - set() 函数
描述
C++ 函数 std::bitset::size() 报告 bitset 的大小。
声明
以下是 std::bitset::size() 函数形式 std::bitset 头的声明。
C++98
size_t size() const;
C++11
constexpr size_t size() noexcept;
参数
None
返回值
返回位集中存在的元素数。
异常
此成员函数从不抛出异常。
示例
以下示例显示了 std::bitset::size() 函数的用法。
#include <iostream> #include <bitset> using namespace std; int main(void) { bitset<4> b; cout << "Bitset contains " << b.size() << " bits." << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
Bitset contains 4 bits.