show/hide this revision's text 3 Add standard library section.

The problem is not that there are no good uses for operator overloading; the problem is that there are lots of bad uses for operator overloading.

Particularly when you get to overloading . and new.

Edit:

Ok, so you can't overload . in C++. But I stand by the general point that overloading has rather few accurate mapping of operators for objects: mostly interesting number (complex etc), points, matrices. I think even the stream overrides are abusing the mechanism.

I think overloading the new operator can be used to do very clever thengsthings, but I suspect that I would really hate debugging anything that used it.

The problem with looking at operator overloads in the standard library is that they'll be familiar to all developers (in that language). That makes it hard to understand where the maintenance complexity comes from.

show/hide this revision's text 2 Respond to comments.

The problem is not that there are no good uses for operator overloading; the problem is that there are lots of bad uses for operator overloading.

Particularly when you get to overloading . and new.

Edit:

Ok, so you can't overload . in C++. But I stand by the general point that overloading has rather few accurate mapping of operators for objects: mostly interesting number (complex etc), points, matrices. I think even the stream overrides are abusing the mechanism.

I think overloading the new operator can be used to do very clever thengs, but I suspect that I would really hate debugging anything that used it.

show/hide this revision's text 1

The problem is not that there are no good uses for operator overloading; the problem is that there are lots of bad uses for operator overloading.

Particularly when you get to overloading . and new.