vote up 6 vote down star

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?

flag

2 Answers

vote up 4 vote down

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|flag
vote up 4 vote down

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|flag
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 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. – Neil Butterworth Jul 15 at 18:00
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 at 18:07
"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 at 18:56
@onebyone Sorry, I have no more access than you to the mind-states of standard comittee members. But I believe what I said in the answer is more or less the rationale. It strikes me that your proposal wouldn't work because the thing that becomes the LHS would be a temporary. – Neil Butterworth Jul 15 at 19:01
show 1 more comment

Your Answer

Get an OpenID
or

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