C++ 位集库 - count() 函数


描述

C++ 函数std::bitset::count()计算 bitset 中设置位的数量。

宣言

以下是 std::bitset::count() 函数形式 std::bitset 标头的声明。

C++98

size_t count() const;

C++11

size_t count() const noexcept;

参数

没有任何

返回值

返回设置的位数。

例外情况

该成员函数从不抛出异常。

例子

以下示例显示了 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.
位集.htm