📜  C++ STL-bitset.all()函数

📅  最后修改于: 2020-10-17 06:00:48             🧑  作者: Mango

C++ bitset all()函数

C++ bitset all()函数用于测试是否设置了bitset中的所有位。它返回一个布尔值,即true或false。

句法

bool all() const no except;

参数

它不带任何参数。

返回值

它返回布尔值true或false。

例子1

#include 
#include 
using namespace std;
int main()
{
bitset<4> b;
bitset<4> mask("1111");
if (!b.all())
cout<< "All bits are not set." <

输出:

All bits are not set.
All bit are set.