The operators are = () [] -> ->* conversion operators

These can be declared only as member functions.

Any other operator function can be either a class member or a non-member function.

What is the rationale for this restriction?

link|improve this question
feedback

2 Answers

Because you can't modify the semantics of primitive types. It wouldn't make sense to define how operator= works on an int, how to deference a pointer, or how an array access works.

link|improve this answer
feedback

The rationale is that it would not make sense for them to be non-members, as the thing on the left-hand side of the operator must be a class instance.

For example, assuming a class A

A a1;
..
a1 = 42;

The last statement is really a call like this:

a1.operator=(42);

It would not make sense for the thing on the LHS of the . not to be an instance of A, and so the function must be a member.

link|improve this answer
1  
I can think of uses. For instance, class B might theoretically want to change how it is assigned to A by overloading operator=(A&,B), but B might for some reason not want to define a cast operator to A (for instance because you don't want the other implicit casts to occur). This desire might be unwise, against common practice, etc, but I'm not sure it's nonsensical or that you've (yet) made the case against it. – Steve Jessop Jul 15 '09 at 17:53
Well, it doesn't really matter if I haven't made the case against - we have to accept what the standard says. And of course you can do (almost) anything you like via a named friend function. – anon Jul 15 '09 at 18:00
1  
It makes sense to disallow such operations on primitive types, but why not allow a global operator[](const MyClass&, int) and make operator[](void,int)* produce an error specifically because of the primitive type? – Tim Sylvester Jul 15 '09 at 18:07
2  
"we have to accept what the standard says" - of course, but that does not exclude seeking a rationale. Usually, the committee made decisions for a reason. You've said the reason this is forbidden is that it "doesn't make sense". As opposed to, say, because some committee member slipped it into the standard while drunk ;-) – Steve Jessop Jul 15 '09 at 18:56
1  
Why must it be a temporary? What's the difference between defining operator=(A&, const B&) as a free function, and defining swap(A&, B&) as a free function? I don't know, but if anyone does then it probably accounts for the reason that assignment operator has to be a member of A instead of free. – Steve Jessop Jul 16 '09 at 1:38
show 1 more comment
feedback

Your Answer

 
or
required, but never shown