vote up 19 vote down star
2

Operator overloading in C++ is considered by many to be A Bad Thing(tm), and a mistake not to be repeated in newer languages. Certainly, it was one feature specifically dropped when designing Java.

Now that I've started reading up on Scala, I find that it has what looks very much like operator overloading (although technically it doesn't have operator overloading because it doesn't have operators, only functions). However, it wouldn't seem to be qualitatively different to the operator overloading in C++, where as I recall operators are defined as special functions.

So my question is what makes the idea of defining "+" in Scala a better idea than it was in C++?

flag

74% accept rate
3  
Neither C++ not Scala was defined by universal consensus among all programmers. I don't think there's any contradiction between the fact that some people whinge about C++, and the fact that some people don't whinge about Scala. – Steve 'onebyone' Jessop Jul 8 at 15:15

13 Answers

vote up 48 vote down check

C++ inherits true blue operators from C. By that I mean that the "+" in 6 + 4 is very special. You can't, for instance, get a pointer to that + function.

Scala on the other hand doesn't have operators in that way. It just has great flexibility in defining method names plus a bit of built in precedence for non-word symbols. So technically Scala doesn't have operator overloading.

Operator overloading isn't inherently bad, even in C++. The problem is when bad programmers abuse it. But frankly, I'm of the opinion that taking away programmers ability to abuse operator overloading doesn't put a drop in the bucket of fixing all the things that programmers can abuse. The real answer is mentoring. http://james-iry.blogspot.com/2009/03/operator-overloading-ad-absurdum.html

None-the-less, there are differences between C++'s operator overloading and Scala's flexible method naming which, IMHO, make Scala both less abusable and more abusable.

In C++ the only way to get in-fix notation is using operators. Otherwise you must use object.message(argument) or pointer->messsage(argument) or function(argument1, argument2). So if you want a certain DSLish style to your code then there's pressure to use operators.

In Scala you can get infix notation with any message send. "object message argument" is perfectly ok, which means you don't need to use non-word symbols just to get infix notation.

C++ operator overloading is limited to essentially the C operators. Combined with the limitation that only operators may be used infix that puts pressure on people to try to map a wide range of unrelated concepts onto a relatively few symbols like "+" and ">>"

Scala allows a huge range of valid non-word symbols as method names. For instance, I've got an embedded Prolog-ish DSL where you can write

female('jane)!  // jane is female
parent('jane,'john)!  // jane is john's parent
parent('jane, 'wendy)! // jane is wendy's parent

mother('Mother, 'Child) :- parent('Mother, 'Child) & female('Mother) // a mother of a child is the child's parent and is female

mother('X, 'john)?  // find john's mother
mother('jane, 'X)?  // find's all of jane's children

The :-, !, ?, and & symbols are defined as ordinary methods. In C++ only & would be valid so an attempt to map this DSL into C++ would require some symbols that already evoke very different concepts. Of course, this also opens up Scala to another kind of abuse. In Scala you can name a method $!&^% if you want to.

For other languages that, like Scala, are flexible in the use of non-word function and method names see Smalltalk where, like Scala, every "operator" is just another method and Haskell which allows the programmer to define precedence and fixity of flexibly named functions.

link|flag
1  
A well-considered response. Thanks. – skaffman Jul 8 at 15:58
1  
very nice answer – Neil Butterworth Jul 8 at 18:03
1  
+1 - yes, very nicely put- Someone please mark this as the answer :) – Faisal Vali Jul 8 at 19:02
1  
Good answer James. – Erik Engbrecht Jul 8 at 19:13
Last I checked, 3.operator+(5) worked. I'm really surprised that &(3.operator+) doesn't. – Joshua Sep 7 at 22:43
vote up 28 vote down

Operator overloading was never universally thought to be a bad idea in C++ - just the abuse of operator overloading was thought to be a bad idea. One doesn't really need operator overloading in a language since they can be simulated with more verbose function calls anyway. Avoiding operator overloading in Java made the implementation and specification of Java a little simpler and it forced programmers to not abuse operators. There has been some debate in the Java community about introducing operator overloading.

The advantages and disadvantages of operator overloading in Scala are the same as in C++ - you can write more natural code if you use operator overloading appropriately - and more cryptic, obfuscated code if you don't.

FYI: Operators are not defined as special functions in C++, they behave just like any other function - although there are some differences in name lookup, whether they need to be member functions, and the fact that they can be called in two ways: 1) operator syntax, and 2) operator-function-id syntax.

link|flag
vote up 23 vote down

Operator overloading in C++ is considered by many to be A Bad Thing(tm)

Only by the ignorant. It is absolutely required in a language like C++, and it is noticeable that other languages that started off taking a "purist" view, have added it once their designers found out how necessary it is.

link|flag
5  
Steady on, mr grumpy pants – skaffman Jul 8 at 14:30
11  
I actually agree with Neil. Operator overloading is essential if you want to present variables/constants/objects/instances as algebraic entities... and have people understand their interactions in a mathematical fashion -- which should be how programming works IMHO. – Massa Jul 8 at 14:38
3  
+1, Operator overloading in C++ is good. For example it makes vector math a lot cleaner. Like with many C++ features, you should wield the power carefully. – abababa22 Jul 8 at 14:45
3  
@Kristo Because C++ uses values that must be assigned and copied. It is necessary to have control over that, so you must be able to specify the assignment operator for a given type, at a minimum. – Neil Butterworth Jul 8 at 15:01
3  
@Kristo: because one intention of C++ is to allow user-defined types to do everything that builtin types do (albeit they're treated differently in some contexts such as implicit conversions). If you want to implement a 27-bit integer, then you can, and using it will be just like using int. Without operator overloading, it would not be possible to use UDTs with the same the syntax as builtin types, and hence the resulting language would not be "like C++" in this sense. – Steve 'onebyone' Jessop Jul 8 at 15:03
show 11 more comments
vote up 8 vote down

This article - "The Positive Legacy of C++ and Java" - answers your question directly.

"C++ has both stack allocation and heap allocation and you must overload your operators to handle all situations and not cause memory leaks. Difficult indeed. Java, however, has a single storage allocation mechanism and a garbage collector, which makes operator overloading trivial" ...

Java mistakenly (according to the author) omitted operator overloading because it was complicated in C++, but forgot why (or didn't realize that it didn't apply to Java).

Thankfully, higher level languages like Scala give developers options, while still running on the same JVM.

link|flag
Very interesting. Thanks for posting that. – skaffman Jul 8 at 15:55
+1, I was going to say the same thing. – Bastien LĂ©onard Jul 8 at 19:44
Eckel is the only source I've ever seen for the idea that operator overloading was ditched from Java because of complications in C++ and he doesn't say what his source is. I would discount it. All the other sources I have say that it was ditched due to potential abuse. See gotw.ca/publications/c_family_interview.htm/… and newt.com/wohler/articles/…. Just page search them for "operator overloading." – James Iry Jul 9 at 16:28
vote up 4 vote down

In general it is not a bad thing.
New languages such as C# also have operator overloading.

It is the abuse of operator overloading that is a bad thing.

But there are also problems with operator overloading as defined in C++. Because overloaded operators are just syntactic sugar for method calls they behave just like method. On the other hand normal built-in operators do not behave like methods. These inconsistency can be cause problems.

Off the top of my head operators || and &&.
The built in versions of these are short-cut operators. This is not true for overloaded versions and has caused some problems.

The fact that + - * / all return the same type that they operate on (after operator promotion)
The overloaded versions can return anything (This is where the abuse sets in, If your operators start to return some arbitrator type the user was not expecting things go down hill).

link|flag
vote up 3 vote down

Operator overloading was not a C++ invention - it came from Algol IIRC and even Gosling does not claim it is a bad idea in general.

link|flag
Sure, but it was in its C++ incarnation that it gained a general air of disreputability. – skaffman Jul 8 at 14:28
2  
What do you mean by "general air of disreputability"? Most people I know use languages that support operator overloading (C++, C#) and I have never heard any complaints. – Nemanja Trifunovic Jul 8 at 14:48
I'm speaking from my long-past experience with pre-ANSI C++, and I certainly recall a common dislike of them. Perhaps the situation improved with ANSI C++, or people just learned how not to abuse it. – skaffman Jul 8 at 15:33
1  
Speaking as someone that has been using C++ since cfront days (mid 80s) I can assure you that that the introduction of the ISO standard had no effect on people's prejudices regarding operator overloading. – Neil Butterworth Jul 8 at 15:38
vote up 1 vote down

As the other answers have pointed out; operator overloading itself isn't necessarily bad. What is bad it when it is used in ways that make the resulting code un-obvious. Generally when using them you need to make them do the least surprising thing (having operator+ do division would cause trouble for a rational class's usage) or as Scott Meyers says:

Clients already know how types like int behave, so you should strive to have your types behave in the same way whenever reasonable... When in doubt, do as the ints do. (From Effective C++ 3rd Edition item 18)

Now some people have taken operator overloading to the extreme with things like boost::spirit. At this level you have no idea how it is implemented but it makes an interesting syntax to get what you want done. I'm not sure if this is good or bad. It seems nice, but I haven't used it.

link|flag
I'm not arguing for or against operator overloading here, I'm not looking for people to justify them. – skaffman Jul 8 at 15:34
Sprint doesn't come anywhere near the worst example I've come across - you should see what the RogueWave database library gets up to! – Neil Butterworth Jul 8 at 15:35
I agree that Spirit misuses the operators, but I can't really think of a better way to do it. – Zifre Jul 8 at 15:51
I don't think spirit is quite abusing the operators, but it's pushing it. I agree there's really no other way to do it. It basically creates a DSL within C++'s syntax. Very far off of what C++ was designed to do. Yes, there are far worse examples :) In general I use them where appropriate. Mostly just the streaming operators for easier debugging\logging. And even there it's just sugar that forwards to a method implemented in the class. – Matt Price Jul 8 at 18:25
vote up 1 vote down

Other comments said it: it really doesn't. On the scala's side of things, though, type inference, strong types and the explicit use of implicit conversions make it a bit easier to use. But java is one of the few languages were symbols can't be methods: smalltalk and ruby makes great use of such methods, and it does not make any code harder to read. In fact, they are used with such ellegance in these languages that it actually makes it easier to read and write.

But no reason you can't make a mess out of it nonetheless. I'd usually keep symbols only to data structures, math types (numbers, rings, fields, groups, monois, matrixes, vector spcaces, categories, and so on) and value objects. In a DDD setting (assuming your domain is not math or logic), I'd keep them completely out of entities, repositories and services, allowing method's names to be part of the ubiquitous language.

link|flag
vote up 1 vote down

I believe EVERY answer missed this. In C++ you can overload operators all you want, but you can't effect the precedence with which they're evaluated. Scala doesn't have this issue, IIRC.

As for it being a bad idea, besides precedence issues, people come up with really daft meanings for operators, and it rarely aids readability. Scala libraries are especially bad for this, goofy symbols that you must memorize each time, with library maintainers sticking their heads in the sand saying, 'you only need to learn it once'. Great, now I need to learn some 'clever' author's cryptic syntax * the number of libraries I care to use. It wouldn't be so bad if there existed a convention of ALWAYS supplying a literate version of the operators.

link|flag
Scala has fixed operator precedence as well, doesn't it? – skaffman Jul 14 at 7:02
I believe there is, but it's far flatter. More to the point, Scala has less operators period. +, -, * are methods, not operators, IIRC. Which is why 2 + 3 * 2, isn't 8, it's 10. – Saem Jul 14 at 16:29
vote up 0 vote down

However, it wouldn't seem to be qualitatively different to the operator overloading in C++, where as I recall operators are defined as special functions.

AFAIK, There is nothing special in operator functions compared to "normal" member functions. Of course you only have a certain set of operators that you can overload, but that doesn't make them very special.

link|flag
vote up 0 vote down

I have never seen an article claiming that C++'s operator overloading is bad.

User-definable operators permit an easier higher level of expressivity and usability for users of the language.

link|flag
vote up 0 vote down

Operator overloading is not something that you really "need" very often, but when using Java, if you hit a point where you genuinely need it, it'll make you want to rip your fingernails out just so you have an excuse to stop typing.

That code which you've just found overflows a long? Yup, you're going to have to retype the whole lot to make it work with BigInteger. There is nothing more frustrating that having to reinvent the wheel just to change the type of a variable.

link|flag
vote up 0 vote down

The only thing known wrong in C++ is the lack of the ability to overload []= as a separate operator. This could be hard to implement in a C++ compiler for what is probably not an obvious reason but plenty worth it.

link|flag

Your Answer

Get an OpenID
or

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