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


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



描述

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

描述

C++ 函數std::bitset::to_string()將位集對象轉換為字符串對象。

聲明

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

C++98

template <class charT, class traits, class Alloc>
basic_string<charT,traits,Alloc> to_string() const;

C++11

template <class charT = char,
          class traits = char_traits<charT>,
          class Alloc = allocator<charT>>
          basic_string<charT,traits,Alloc> to_string (charT zero = charT('0'),
          charT one  = charT('1')) const;

參數

返回值

返回 bitset 對象的字符串表示形式。

異常

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

示例

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

#include <iostream>
#include <bitset>

using namespace std;

int main(void) {

   bitset<4> b;

   string s = b.to_string();

   cout << s << endl;

   return 0;
}

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

0000

相關用法


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