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


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



聲明

以下是 std::bitset::to_ulong() 函數形式 std::bitset 頭文件的聲明。

C++98

unsigned long to_ulong() const;

參數

返回值

將 bitset 作為無符號長數返回。

異常

如果拋出異常,bitset 沒有變化。

示例

下麵的例子展示了 std::bitset::to_ulong() 函數的用法。

#include <iostream>
#include <bitset>
#include <typeinfo>

using namespace std;

int main(void) {

   bitset<4> b("1010");;
   auto result = b.to_ulong();

   cout << "Decimal representation of " << b << " = " << result << endl;
   return 0;
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

Decimal representation of 1010 = 10

相關用法


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