I'd like to control what is written to a stream, i.e. cout, for an object of a custom class. Is that possible in C++? In Java you could override the toString() method for similar purpose.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
In C++ you can overload
This way you can output instances of your class on streams:
In case your
|
|||||||||||||||||
|
|
You can do it without unnecessary friends and allowing polymorphism, this way:
|
|||||||||||
|
|
As an extension to what John said, if you want to extract the string representation and store it in a
|
||||
|
In C++11, to_string is finally added to the standard. http://en.cppreference.com/w/cpp/string/basic_string/to_string |
|||||
|