Re: question regarding operator << overloading
Goran wrote:
First... thanks for your detailed description, Victor!
Regarding your questions:
[...]
It would be also good to know which line is 110, don't you think?
[...]
The Line 110 is:
aStream << aBC.GetValue() << "\nsome stuff\n" << aBC.GetValue();
It's too late, isn't it? Just remember to point out certain things you
get for free while in your development environment, to us who can't see
into your monitor from *that afar*.
[...]
ostream& operator <<(ostream&, GoodClass_t&);
Note that 'GoodClass_t' object is *non-const*. Is there a reason
why this is so?
[...]
This is due to the fact that a private member is changed.
I get that. The reason I asked the question so you would stop and think
whether you actually need to _change_ that private member during output.
[...]
ostream&
GOODLIB::
operator <<(ostream& aStream, GoodClass_t& aWC) {
if(aWC.GetMode()) {
aWC.SetMode(false);
So, while *outputting* an object you *set* its mode? I don't know.
Does not seem like a good idea. Anyway...
[...]
Yeah, because there are two ways of output. E.g. Line 110.
I think what you're saying here is that you need the *alternating* way
of outputting each object. I've never has the need to do that with any
of my objects, but I concede there may be a need. I would, however, in
that case define the 'mode' a *mutable* member of your class and make
'SetMode' a const member and declare the 'aWC' argument a reference to
*const* object.
You need to revise your interface.
[...]
I will do so.
Take a closer look at the 'mutable' suggestion.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask