📅  最后修改于: 2020-10-17 06:00:48             🧑  作者: Mango
C++ bitset all()函数用于测试是否设置了bitset中的所有位。它返回一个布尔值,即true或false。
bool all() const no except;
它不带任何参数。
它返回布尔值true或false。
#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.