up vote 3 down vote favorite
1
share [g+] share [fb]

Why should overloading of stream operators(<<,>>) should be kept as friends rather than making them members of the class?

link|improve this question

2  
It makes programming so much more exciting when functions are having an affair with the private members of your classes. – zneak Jul 23 '10 at 22:08
feedback

3 Answers

up vote 7 down vote accepted

When you overload a binary operator as a member function of a class the overload is used when the first operand is of the class type.

For stream operators, the first operand is the stream and not (usually) the custom class.

For this reason overloaded stream operators for custom classes which are designed to be used in the conventional manner can't be member functions of the custom class, they must be free functions.

(I'm assuming that the stream classes are not open to be changed; if they were you could add member functions to stream classes to cope with additional custom types but this would usually be undesirable from a dependency point of view.)

Whether or not they are friends should depend on whether they need access to non-public members of the class.

link|improve this answer
I think this is a bit misleading. They can be member functions, but to use them the usual way (writing to streams), they need to be member functions. – Tamás Szelei Jul 23 '10 at 22:13
@sztomi: I don't understand your comment. No, they don't need to be member functions; they can't be member functions (unless you're writing a stream class or writing your streaming operators backwards from the rest of the world). – Charles Bailey Jul 23 '10 at 22:17
So yes, they can be member functions. If you want them to work as usual (like the rest of the word uses it), you have to define them as friends. That's what I meant. – Tamás Szelei Jul 23 '10 at 22:19
@sztomi: I still don't understand what you mean. You don't have to declare them as friends, it's fine to have them as non-friend free functions if they can do there work with just the public interface of the custom class. – Charles Bailey Jul 23 '10 at 22:22
1  
@sztomi: I edited for clarity; originally I was assuming the premise of the previous paragraph: that the first operand is the stream. Now I've made that explicit. In your first comment you said: "... they need to be member functions"; in your second comment you said that "If you want them to work as usual .... you have to define them as friends". Neither of these statements are true. I'm sorry if my answer wasn't 100% clear but I think that it's accurate. – Charles Bailey Jul 23 '10 at 22:37
show 1 more comment
feedback

So you can say:

some_stream << my_class;

Note that the definition of member operators makes the left hand side the class it self. e.g.:

my_class << some_stream;

Which is not how the standard streams are supposed to work.

link|improve this answer
feedback

Members of what class? What is the type of the left-hand operand?

They don't have to be friend, though, unless there's a need to access otherwise unaccessible private data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.