C++ 位集库 - to_string() 函数


描述

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

描述

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;

参数

没有任何

返回值

返回位集对象的字符串表示形式。

例外情况

如果抛出异常,则位集不会发生变化。

例子

以下示例显示了 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
位集.htm