13.10 Wrap-Up
This chapter provided a deeper look at how C++ performs input/output using streams. You learned about the stream-I/O classes and objects, as well as the stream I/O template class hierarchy. We discussed ostream
’s formatted and unformatted output capabilities performed by the put
and write
functions. You learned about istream
’s formatted and unformatted input capabilities performed by the eof
, get
, getline
, peek
, putback
, ignore
and read
functions. We discussed stream manipulators and member functions that perform formatting tasks:
dec
,oct
,hex
andsetbase
for displaying integersprecision
andsetprecision
for controlling floating-point precisionand
width
andsetw
for setting field width.
You also learned additional formatting ...
Get C++ How to Program, 10/e now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.