default (1) | explicit stringstream (ios_base::openmode which = ios_base::in | ios_base::out); |
---|---|
initialization (2) | explicit stringstream (const string& str, ios_base::openmode which = ios_base::in | ios_base::out); |
default (1) | explicit stringstream (ios_base::openmode which = ios_base::in | ios_base::out); |
---|---|
initialization (2) | explicit stringstream (const string& str, ios_base::openmode which = ios_base::in | ios_base::out); |
copy (3) | stringstream (const stringstream&) = delete; |
move (4) | stringstream (stringstream&& x); |
member constant | stands for | access |
---|---|---|
ios_base::in | input | The sequence supports input operations. |
ios_base::out | output | The sequence supports output operations. |
member constant | stands for | access |
---|---|---|
ios_base::in | input | The sequence supports input operations. |
ios_base::out | output | The sequence supports output operations. |
ios_base::ate | at end | The writing position is at the end after construction, and after every time the content is reset with member str. |
|
|
foo: 100 bar: 200 |