Java operator overload - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T19:01:04Zhttp://stackoverflow.com/feeds/question/77718http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/77718/java-operator-overload13Java operator overloadrengolin2008-09-16T22:04:40Z2009-09-11T21:46:50Z
<p>Coming from C++ to Java, the obvious unanswered question is why not operator overload. </p>
<p>On the web some go about: "it's clearly obfuscated and complicate maintenance" but no one really elaborates that further (I completely disagree, actually).</p>
<p>Other people pointed out that some objects do have an overload (like String operator +) but that is not extended to other objects nor is extensible to the programmer's decision. I've heard that they're considering extending the favour to BigInt and similar, but why not open that for our decisions?</p>
<p>How exactly if complicates maintenance and where on earth does this obfuscate code?</p>
<p>Isn't :</p>
<pre><code>Complex a, b, c; a = b + c;
</code></pre>
<p><em>much</em> simpler than:</p>
<pre><code>Complex a, b, c; a.equals( b.add(c) );
</code></pre>
<p>??? Or is it just habit?</p>
http://stackoverflow.com/questions/77718/java-operator-overload/77738#777383Answer by Corporal Touchy for Java operator overloadCorporal Touchy2008-09-16T22:06:22Z2008-09-16T22:06:22Z<p>Well you can really shoot yourself in the foot with operator overloading. It's like with pointers people make stupid mistakes with them and so it was decided to take the scissors away.</p>
<p>At least I think that's the reason.
I'm on your side anyway. :)</p>
http://stackoverflow.com/questions/77718/java-operator-overload/77790#777904Answer by akramnik for Java operator overloadakramnik2008-09-16T22:10:27Z2008-09-16T22:10:27Z<p>I think this may have been a conscious design choice to force developers to create functions whose names clearly communicate their intentions. In C++ developers would overload operators with functionality that would often have no relation to the commonly accepted nature of the given operator, making it nearly impossible to determine what a piece of code does without looking at the definition of the operator.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/77798#777982Answer by Sebastian Redl for Java operator overloadSebastian Redl2008-09-16T22:11:51Z2008-09-16T22:11:51Z<p>The Java designers decided that operator overloading was more trouble than it was worth. Simple as that.</p>
<p>In a language where every object variable is actually a reference, operator overloading gets the additional hazard of being quite illogical - to a C++ programmer at least. Compare the situation with C#'s == operator overloading and Object.Equals and Object.ReferenceEquals (or whatever it's called).</p>
http://stackoverflow.com/questions/77718/java-operator-overload/77810#77810-1Answer by scubabbl for Java operator overloadscubabbl2008-09-16T22:12:37Z2008-09-16T22:12:37Z<p>Overloaded operators can expose functionality that is not always clear so the code stops being self documenting. If you have to define methods, then descriptive names can document code effectively.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/77811#778111Answer by David Schlosnagle for Java operator overloadDavid Schlosnagle2008-09-16T22:12:42Z2008-09-16T23:52:42Z<p>Assuming Java as the implementation language then a, b, and c would all be references to type Complex with initial values of null. Also assuming that Complex is immutable as the mentioned <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/math/BigInteger.html" rel="nofollow">BigInteger</a> and similar immutable <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/math/BigDecimal.html" rel="nofollow">BigDecimal</a>, I'd I think you mean the following, as you're assigning the reference to the Complex returned from adding b and c, and not comparing this reference to a.</p>
<blockquote>
<p>Isn't :</p>
<pre><code>Complex a, b, c; a = b + c;
</code></pre>
<p><em>much</em> simpler than:</p>
<pre><code>Complex a, b, c; a = b.add(c);
</code></pre>
</blockquote>
http://stackoverflow.com/questions/77718/java-operator-overload/77845#77845-1Answer by Herge for Java operator overloadHerge2008-09-16T22:16:31Z2008-09-16T22:16:31Z<p>When reading code and fixing bugs, all it does is obfuscate code. It is a huge pain to have to double check if a variable is of the basic types (i.e. integer, float, etc.) or an object each time you see an operator. Especially if the object is not defined in the code block your looking at but in some other class definition file.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/77871#778710Answer by pc for Java operator overloadpc2008-09-16T22:19:06Z2008-09-16T22:19:06Z<p><em>Complex a, b, c; a.equals( b.add(c) );</em></p>
<p>This doesn't make much sense. Looking at it I'd say you're adding c to b, and checking whether a equals to the new b.</p>
<p>How about:
Complex a = Complex.add(b,c);
?
Maybe it's a matter of acquired taste, but I think this too is quite readable.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/77908#779081Answer by noah for Java operator overloadnoah2008-09-16T22:24:52Z2008-09-16T22:24:52Z<p><a href="http://groovy.codehaus.org/" rel="nofollow">Groovy</a> has operator overloading, and runs in the JVM. If you don't mind the performance hit (which gets smaller everyday). It's automatic based on method names. e.g., '+' calls the 'plus(argument)' method.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/77963#779637Answer by Aaron for Java operator overloadAaron2008-09-16T22:31:07Z2008-09-16T22:31:07Z<p>@<a href="#77811" rel="nofollow">David</a></p>
<p>Assuming that the SCdF wanted to overwrite the previous value of the object refered to by 'a', then a member function would have to be invoked.</p>
<pre><code> Complex a, b, c;
..
a = b.add(c)
</code></pre>
<p>In C++, this expression tells the compiler to create 3 objects on the stack, perform addition, and <em>copy</em> the resultant value from the temporary object into the existing object 'a'.</p>
<p>However, in java, operator= doesn't perform value copy for reference types, and users can only create new reference types, not value types. So for a user defined type named 'Complex', assignment means to copy a reference to an existing value.</p>
<p>consider instead:</p>
<pre><code>b.set(1, 0); // initialize to real number '1'
a = b;
b.set(2, 0);
assert( !a.Equals(b) );
</code></pre>
<p>In C++, this copies the value, so the comparison will result not-equal. In Java, operator= performs reference copy, so 'a' and 'b' are now refering to the same value. As a result, the comparison will produce 'equal', since the object will compare equal to itself.</p>
<p>The difference between copies and references only adds to the confusion of operator overloading. As Sebastian mentioned, Java and C# both have to deal with value and reference equality separately -- operator+ would likely deal with values and objects, but operator= is already implemented to deal with references.</p>
<p>In C++, you should only be dealing with one kind of comparison at a time, so it can be less confusing. For example, on Complex, operator= and operator== are both working on values -- copying values and comparing values respectively. </p>
http://stackoverflow.com/questions/77718/java-operator-overload/78086#780863Answer by Garth Gilmour for Java operator overloadGarth Gilmour2008-09-16T22:46:57Z2008-09-16T22:46:57Z<p>James Gosling likened designing Java to the following:</p>
<blockquote>
<p>"There's this principle about moving, when you move from one apartment to another apartment. An interesting experiment is to pack up your apartment and put everything in boxes, then move into the next apartment and not unpack anything until you need it. So you're making your first meal, and you're pulling something out of a box. Then after a month or so you've used that to pretty much figure out what things in your life you actually need, and then you take the rest of the stuff -- forget how much you like it or how cool it is -- and you just throw it away. It's amazing how that simplifies your life, and you can use that principle in all kinds of design issues: not do things just because they're cool or just because they're interesting."</p>
</blockquote>
<p>You can read the <a href="http://www.gotw.ca/publications/c_family_interview.htm" rel="nofollow">context of the quote here</a></p>
<p>Basically operator overloading is great for a class that models some kind of point, currency or complex number. But after that you start running out of examples fast.</p>
<p>Another factor was the abuse of the feature in C++ by developers overloading operators like '&&', '||', the cast operators and of course 'new'. The complexity resulting from combining this with pass by value and exceptions is well covered in the <a href="http://rads.stackoverflow.com/amzn/click/0201615622" rel="nofollow">Exceptional C++</a> book.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/78167#781670Answer by Kent for Java operator overloadKent2008-09-16T22:57:47Z2008-09-16T22:57:47Z<p>Sometimes it would be nice to have operator overloading, friend classes and multiple inheritance.</p>
<p>However I still think it was a good decision. If Java would have had operator overloading then we could never be sure of operator meanings without looking through source code. At present that's not necessary. And I think your example of using methods instead of operator overloading is also quite readable. If you want to make things more clear you could always add a comment above hairy statements.</p>
<pre><code>// a = b + c
Complex a, b, c; a = b.add(c);
</code></pre>
http://stackoverflow.com/questions/77718/java-operator-overload/81187#811870Answer by Jonathan for Java operator overloadJonathan2008-09-17T08:40:21Z2008-09-17T08:40:21Z<p>Why is it that you think the version with overloading is more reasonable?</p>
<p>How often do programmers need to implement new fundamental integer data types?</p>
<p>Can you think of an example other than complex numbers where overloading actually improves readability?</p>
http://stackoverflow.com/questions/77718/java-operator-overload/82890#828902Answer by thethunk for Java operator overloadthethunk2008-09-17T13:01:50Z2008-09-17T13:01:50Z<p>Check out Boost.Units: <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/boost_units.html" rel="nofollow">link text</a></p>
<p>It provides zero-overhead Dimensional analysis through operator overloading. How much clearer can this get?</p>
<pre><code>quantity<force> F = 2.0*newton;
quantity<length> dx = 2.0*meter;
quantity<energy> E = F * dx;
std::cout << "Energy = " << E << endl;
</code></pre>
<p>would actually output "Energy = 4 J" which is correct.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/83846#838460Answer by Asgeir S. Nilsen for Java operator overloadAsgeir S. Nilsen2008-09-17T14:30:49Z2008-09-17T14:30:49Z<p>Related question: What is your favourite overloading of the . operator?</p>
http://stackoverflow.com/questions/77718/java-operator-overload/84852#848520Answer by rengolin for Java operator overloadrengolin2008-09-17T16:05:15Z2008-09-17T16:05:15Z<p>Writing XML is easy with operator overload:</p>
<pre><code>return ( entry( ac = "P12345", name = "Foo", value=1 )
<< sequence ( md5 = "da4234ddfe712" ) );
</code></pre>
<p>And my favourite overload of the . is:</p>
<pre><code>T &operator.() { return t; }
</code></pre>
http://stackoverflow.com/questions/77718/java-operator-overload/88072#880720Answer by Douglas Leeder for Java operator overloadDouglas Leeder2008-09-17T21:52:25Z2008-10-19T20:28:36Z<p>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.</p>
<p>Particularly when you get to overloading . and new.</p>
<p>Edit:</p>
<p>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.</p>
<p>I think overloading the new operator can be used to do very clever things, but I suspect that I would <em>really</em> hate debugging anything that used it.</p>
<p>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.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/194889#19488914Answer by paercebal for Java operator overloadpaercebal2008-10-12T00:20:32Z2008-10-12T00:31:58Z<p>There are a lot of posts complaining about operator overloading.</p>
<p>I felt I had to clarify the "operator overloading" concepts, offering an alternative viewpoint on this concept.</p>
<h2>Code obfuscating?</h2>
<p>This argument is a fallacy.</p>
<p>It is as easy to obfuscate code in C or Java through functions/methods than it is in C++ through operator overloads:</p>
<pre><code>// C++
T operator + (const T & a, const T & b) // add ?
{
T c ;
c.value = a.value - b.value ; // substract !!!
return c ;
}
// Java
static T add (T a, T b) // add ?
{
T c ;
c.value = a.value - b.value ; // substract !!!
return c ;
}
/* C */
T add (T a, T b) /* add ? */
{
T c ;
c.value = a.value - b.value ; /* substract !!! */
return c ;
}
</code></pre>
<p>For another example, let's see the Cloneable interface in Java: <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Cloneable.html" rel="nofollow">http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Cloneable.html</a></p>
<p>You are supposed to clone the object implementing this interface. But you could lie. And create a different object. In fact, this interface is so weak you could return another type of object altogether, just for the fun of it:</p>
<pre><code>class MySincereHandShake implements Cloneable
{
// etc.
public Object clone()
{
return new MyVengefulKickInYourHead() ;
}
}
</code></pre>
<p>Should the Cloneable interface be banned on the same grounds C++ operator overloading should be?</p>
<p>We could overload the toString method of a MyComplexNumber class to have it return the stringified hour of the day. Should the toString overloading be banned, too? We could sabotage MyCompletNumber.equals to have it return a random value...</p>
<p>In Java, as in C++, or whatever language, the programmer must respect a minimum of semantics when writing code. This means implementing a "add" function that adds, and Cloneable method that clones, and a ++ operator than increments.</p>
<h2>What's obfuscating anyway?</h2>
<p>Now that we know that code can be sabotaged even through the pristine Java methods, we can ask ourselves about the real use of operator overloading in C++?</p>
<p>It is used to add syntactic sugar:</p>
<p>Iterators:</p>
<pre><code>// Java iterators
it.moveNext() ;
// C++ iterators ;
++it ;
--it ;
it += 5 ;
</code></pre>
<p>Comparisons:</p>
<pre><code>// Java comparison
boolean isEqual = myString.equals(myOtherString) ;
// C++ comparison
bool isEqual = myGUID == myOtherGUID ;
bool isLesser = myGUID < myOtherGUID ;
bool isLesserOrEqual = myGUID <= myOtherGUID ;
</code></pre>
<p>Array accessors and subscripting:</p>
<pre><code>// Java container accessors
myArray[25] ;
myVector.elementAt(25) ;
myMap.get("25") ;
my2DContainer.get(25, 42) ;
// C++ container accessors
myArray[25] ;
myVector[25] ;
myMap["25"] ;
my2DContainer(25, 42) ;
</code></pre>
<p>Advanced types:</p>
<pre><code>// Java fictious advanced types
myMatrix = Matrix.multiply(myMatrixA, myMatrixB) ;
myMatrix = Matrix.multiply(Matrix.substract(myMatrixA, myMatrixB), Matrix.add(myMatrixC, myMatrixD)) ;
// C++ fictious advanced types
myMatrix = myMatrixA * myMatrixB ;
myMatrix = (myMatrixA - myMatrixB) * (myMatrixC + myMatrixD) ;
</code></pre>
<p>Functors:</p>
<pre><code>// Java Functors ???
myFunctorObject.exec("Hello World", 42) ;
// C++ Functors
myFunctorObject("Hello World", 42) ;
</code></pre>
<p>String concatenation:</p>
<pre><code>// Java concatenation
myStringBuffer.append("Hello").append(25).(" World") ;
// C++ stream handling
myStringStream << "Hello " << 25 << " World" ;
myFileStream << "Hello " << 25 << " World" ;
myOutputStream << "Hello " << 25 << " World" ;
myNetworkStream << "Hello " << 25 << " World" ;
myAnythingThatDerivesFromOStream << "Hello " << 25 << " World" ;
</code></pre>
<p>Ok, In Java you can use MyString = "Hello " + 25 + " World"... But, wait a second: This is operator overloading, isn't it? Isn't it cheating???</p>
<p>:-D</p>
<p>All in all, I wonder which languages is really the less easy to read, when used by programmers (and not saboteurs, which seem to be quite numerous, according to the "operator overloading is evil" crowd).</p>
<p>The truth is that, like the toString(), clone(), equals() methods are for Java, C++ operator overloading is so much part of C++ that it becomes as natural as the original C operators, or the before mentioned Java methods.</p>
<p>In C, << and >> are used for bitwise operations. In C++, when used on streams, they are used to write or read. And in C++, you'll use more often the stream version than the bitwise version. The operator < and == is used implicitly by STL associative containers. supbscript [] is used on containers. function operator () is used for... functors. Etc. etc..</p>
<p>Combined with template programming, operator overloading becomes a well known design pattern. In fact, you cannot go very far in STL without using overloaded operators, and overloading operators for your own class.</p>
<h2>Now, operator overloading should not be abused</h2>
<p>Operator overloading should strive to respect the semantics of the operator. Do not substract in a + operator (as in "do not substract in a add function").</p>
<p>Cast overloadings are very dangerous because they can lead to ambiguities. So they should really be reserved for well defined cases. As for && and ||, do not ever overload them as the result will be surprising.</p>
<h2>Why it is not possible in Java?</h2>
<p>Because Java objects are used through references (i.e. nullable pointers without arithmetics). Thus, the operator = and == are already used to assign or compare references, not the values referenced.</p>
<p>Only concrete types would benefit from operator overloading, but Java's concrete types are primitives, and already have their operators assigned (like C++ operators for built-in types).
.</p>
<h2>But they do it in C#!!!</h2>
<p>Yeah...</p>
<p>This difference between Java and C# never fails to amuse me. Apparently, the C# folks, with their <em>"every primitive is a struct, and a struct derives from Object"</em>, got it right at first try.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/534625#5346250Answer by Steve for Java operator overloadSteve2009-02-10T22:54:32Z2009-02-10T22:54:32Z<p>Well, chances are, if it's an object your looking at then its using the overload in C++/#.
You could always wait a second or two with the mouse hovering over the operator for the popup info.
Or, if you want to look at the overload function you'll have to scroll WAY OVER to the class view and double click on it.... whew, and I thought the treadmill was hard.</p>
<p>Facts:</p>
<p>When used correctly operator overloading and pointers rule!</p>
<p>The above fact is the reason that many good programmers stick with the C variations..</p>
<p>Obfuscate? hmmmpf.</p>
http://stackoverflow.com/questions/77718/java-operator-overload/1413443#14134430Answer by Kvant for Java operator overloadKvant2009-09-11T21:46:50Z2009-09-11T21:46:50Z<p>Saying that operator overloading leads to logical errors of type that operator does not match the operation logic, it's like saying nothing. The same type of error will occur if function name is inappropriate for operation logic - so what's the solution: drop the ability of function usage!?
This is a comical answer - "Inappropriate for operation logic", every parameter name, every class, function or whatever can be logicly inappropriate.
I think that this option should be available in respectable programing language, and those that think that it's unsafe - hey no bothy says you have to use it.
Lets take the C#. They drooped the pointers but hey - there is 'unsafe code' statement - program as you like on your own risk.</p>