std::basic_ostringstream::basic_ostringstream
From Cppreference
< cpp | io | basic ostringstream
| C++ Standard Library | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Input/output library | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| std::basic_ostringstream | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| basic_ostringstream( ios_base::openmode mode =
|
(1) | |
| basic_ostringstream( const std::basic_string<CharT,Traits,Allocator>& str,
ios_base::openmode mode = |
(2) | (since C++11) |
| basic_ostringstream( basic_ostringstream&& other );
|
(3) | (since C++11) |
Constructs new string stream.
1) Constructs new underlying string device. The underlying basic_stringbuf object is constructed as
2) Uses a copy of str as initial contents of the underlying string device. The underlying basic_stringbuf object is constructed as
3) Move constructor. Constructs the file stream with the state of other using move semantics.
[edit] Parameters
| str | - | string to use as initial contents of the string stream | ||||||||||||||||||||||||||||
| mode | - | specifies stream open mode. It is bitmask type, the following constants are defined:
|
||||||||||||||||||||||||||||
| other | - | another string stream to use as source | ||||||||||||||||||||||||||||
[edit] Example
| This section is incomplete |
[edit] See also
| gets or sets the contents of underlying string device object (public member function) |
|