當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ Bitset test()用法及代碼示例



描述

C++ 函數std::bitset::test()測試是否 Nth位是否設置。

聲明

以下是 std::bitset::test() 函數形式 std::bitset 標頭的聲明。

C++98

bool test (size_t pos) const;

參數

返回值

如果 N 返回真th位設置否則為假。

異常

拋出超出範圍異常如果pos大於或等於位集大小。

示例

下麵的例子展示了 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.

相關用法


注:本文由純淨天空篩選整理自 C++ Bitset Library - test() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。