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
|
|
|
|
|
|
|
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
|
|||
|
|
sprintf 'nuf said |
||||||||
|
