C++ Bitset 库 - test() 函数


描述

C++ 函数std::bitset::test()测试N位是否已设置。

宣言

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

C++98

bool test (size_t pos) const;

参数

没有任何

返回值

如果第 N 位被设置,则返回 true 否则返回 false。

例外情况

如果pos大于或等于位集大小,则抛出out_of_range异常。

例子

以下示例显示了 std::bitset::test() 函数的用法。

#include <iostream>
#include <bitset>

using namespace std;

int main(void) {

   bitset<4> b(1010);

   if (b.test(1))
      cout << "1st bit is set." << endl;

   if (!b.test(0))
      cout << "0th bit is not set." << endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

1st bit is set.
0th bit is not set.
位集.htm