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 overwride the toString() method for similar purpose. Thanks
|
feedback
|
|
In C++ you can overload
This way you can output instances of your class on streams:
In case your
| |||||||||||||||||
feedback
|
|
You can do it without unnecessary friends and allowing polymorphism, this way:
| |||||||
feedback
|
|
As an extension to what John said, if you want to extract the string representation and store it in a
| |||||
|
feedback
|