描述
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 to_ulong()用法及代码示例
- C++ Bitset to_ullong()用法及代码示例
- C++ Bitset test()用法及代码示例
- C++ Bitset reference()用法及代码示例
- C++ Bitset reset()用法及代码示例
- C++ Bitset hash()用法及代码示例
- C++ Bitset bitset()用法及代码示例
- C++ Bitset all()用法及代码示例
- C++ Bitset set()用法及代码示例
- C++ Bitset any()用法及代码示例
- C++ Bitset none()用法及代码示例
- C++ Bitset flip()用法及代码示例
- C++ Bitset count()用法及代码示例
- C++ Boost.Lexical_Cast用法及代码示例
- C++ unordered_map cbegin用法及代码示例
- C++ map lower_bound()用法及代码示例
- C++ Unordered_multimap reserve()用法及代码示例
- C++ list assign()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::string::push_back()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Bitset Library - to_string() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。