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