The GNU C++ Iostream Library - Streams

Node: Streams Next: Files and Strings Prev: Operators Up: Top

Stream Classes

The previous chapter referred in passing to the classes ostream and istream , for output and input respectively. These classes share certain properties, captured in their base class ios .

Ios Shared properties.
Ostream Managing output streams.
Istream Managing input streams.
Iostream Input and output together.


Next: Files and Strings Up: Top