(1) | ||
template< class CharT, class Traits, class Allocator > std::basic_string<CharT, Traits, Allocator> to_string( CharT zero = CharT('0'), CharT one = CharT('1') ) const; | (until C++11) | |
template< class CharT = char, class Traits = std::char_traits<CharT>, class Allocator = std::allocator<CharT> > std::basic_string<CharT, Traits, Allocator> to_string( CharT zero = CharT('0'), CharT one = CharT('1') ) const; | (since C++11) (constexpr since C++23) | |
template< class CharT, class Traits > std::basic_string<CharT, Traits> to_string( CharT zero = CharT('0'), CharT one = CharT('1') ) const; | (2) | (until C++11) |
template< class CharT > std::basic_string<CharT> to_string( CharT zero = CharT('0'), CharT one = CharT('1') ) const; | (3) | (until C++11) |
std::string to_string( char zero = '0', char one = '1' ) const; | (4) | (until C++11) |
Converts the contents of the bitset to a string. Uses zero
to represent bits with value of false
and one
to represent bits with value of true
.
The resulting string contains N
characters with the first character corresponds to the last (N-1
th) bit and the last character corresponding to the first bit.
All template type arguments need to be provided because function templates cannot have default template arguments. Overloads (2-4) are provided to simplify the invocations of std::allocator . 3) Uses the default character trait std::char_traits and the default allocator std::allocator . char | (until C++11) |
zero | - | character to use to represent false |
one | - | character to use to represent true |
to_string<CharT, Traits, std::allocator<CharT>>(zero, one)
.to_string<CharT, std::char_traits<CharT>, std::allocator<CharT>>(zero, one)
.to_string<char, std::char_traits<char>, std::allocator<char>>(zero, one)
.May throw std::bad_alloc
from the std::string
constructor.
Since C++11, functions templates can have default template arguments. LWG issue 1113 removed the helper overloads (2-4) and added the corresponding default template arguments in (1).
#include <iostream> #include <bitset> int main() { std::bitset<8> b{42}; std::cout << b.to_string() << '\n' << b.to_string('*') << '\n' << b.to_string('O', 'X') << '\n'; }
Output:
00101010 **1*1*1* OOXOXOXO
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 396 | C++98 | zero and one bits were converted to characters 0 and 1 (which do not correspond to '0' and '1' ) | added parameters to provide values for these characters |
LWG 434 | C++98 | all template arguments needed to be provided | added overloads (2-4) |
LWG 853 | C++98 | overloads (2-4) did not have the default arguments added by LWG issue 396 | also added |
returns an unsigned long integer representation of the data (public member function) |
|
(C++11) | returns an unsigned long long integer representation of the data (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/utility/bitset/to_string