Skip to Content
C++ All-in-One For Dummies, 4th Edition
book

C++ All-in-One For Dummies, 4th Edition

by John Paul Mueller
January 2021
Intermediate to advanced
912 pages
19h 47m
English
For Dummies
Content preview from C++ All-in-One For Dummies, 4th Edition

Chapter 5

Streaming Your Own Classes

IN THIS CHAPTER

check Streaming a class to a text file

check Getting the most out of manipulators

check Writing your own manipulators

The C++ stream classes can read and write all sorts of goodies, such as integers, characters, strings, floating-point numbers, and Boolean variables. But sooner or later, being able to stream one of your own classes (like the following) would be nice:

MyClass x;cout << x << endl;

C++ has a good reason not to have done this already: The compiler and library can’t predict on their own how you want to stream your class using cout. (The example in the “Writing and reading structured data” section of Chapter 3 of this minibook shows one technique for accomplishing this task by overriding the << operator.) Here are some examples:

  • The name of the class followed by the values of the public properties.
  • The private properties.
  • Derived values or some other information related to the class.

Therefore, you should make the class streamable. This chapter shows you how to do it. But keep in mind that you have (at least) two separate reasons why you may want to make a class streamable:

  • To provide a format for writing the object to a text ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Professional C++, 4th Edition

Professional C++, 4th Edition

Marc Gregoire
Beginning C++

Beginning C++

Brian Foster

Publisher Resources

ISBN: 9781119601746Purchase Link