Parameters
- sb
- pointer to a streambuf object, which is set as the associated stream buffer for the object.
Return Value
None (constructor).Example
| 1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
This code uses a filebuf object (derived from streambuf) to open the file test.txt. The buffer is then passed as parameter to the ostream constructor, associating it to the stream.
Objects of class ostream are seldom constructed directly. Generally some derived class is used (like the standard ones ofstream and ostringstream).
Basic template member declaration
( basic_ostream<charT,traits> ) |
See also
| ios::init | Initialize object [protected] (protected member function) |
