C++ bitset all() 函数
C++ bitset all() 函数用于测试 bitset 中的所有位是否都被设置。它返回一个布尔值,即 true 或 false。
语法
bool all() const no except;
参数
它不接受任何参数。
返回值
它返回一个布尔值,要么是true,要么是false。
示例1
#include <iostream>
#include <bitset>
using namespace std;
int main()
{
bitset<4> b;
bitset<4> mask("1111");
if (!b.all())
cout<< "All bits are not set." <<endl;
b |= mask;
if (b.all())
cout<< "All bit are set." <<endl;
return 0;
}
输出:
All bits are not set.
All bit are set.