Why doesn't Java offer operator overloading?

前端 未结 17 2157
梦谈多话
梦谈多话 2020-11-22 07:38

Coming from C++ to Java, the obvious unanswered question is why didn\'t Java include operator overloading?

Isn\'t Complex a, b, c; a = b + c; much simpl

相关标签:
17条回答
  • 2020-11-22 08:12

    Check out Boost.Units: link text

    It provides zero-overhead Dimensional analysis through operator overloading. How much clearer can this get?

    quantity<force>     F = 2.0*newton;
    quantity<length>    dx = 2.0*meter;
    quantity<energy>    E = F * dx;
    std::cout << "Energy = " << E << endl;
    

    would actually output "Energy = 4 J" which is correct.

    0 讨论(0)
  • 2020-11-22 08:13

    Groovy 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.

    0 讨论(0)
  • 2020-11-22 08:14

    Technically, there is operator overloading in every programming language that can deal with different types of numbers, e.g. integer and real numbers. Explanation: The term overloading means that there are simply several implementations for one function. In most programming languages different implementations are provided for the operator +, one for integers, one for reals, this is called operator overloading.

    Now, many people find it strange that Java has operator overloading for the operator + for adding strings together, and from a mathematical standpoint this would be strange indeed, but seen from a programming language's developer's standpoint, there is nothing wrong with adding builtin operator overloading for the operator + for other classes e.g. String. However, most people agree that once you add builtin overloading for + for String, then it is generally a good idea to provide this functionality for the developer as well.

    A completely disagree with the fallacy that operator overloading obfuscates code, as this is left for the developer to decide. This is naïve to think, and to be quite honest, it is getting old.

    +1 for adding operator overloading in Java 8.

    0 讨论(0)
  • 2020-11-22 08:14

    I think that people making decisions simply forgot about complex values, matrix algebra, set theory and other cases when overloading would allow to use the standard notation without building everything into the language. Anyway, only mathematically oriented software really benefits from such features. A generic customer application almost never needs them.

    They arguments about the unnecessary obfuscation are obviously valid when a programmer defines some program-specific operator where it could be the function instead. A name of the function, when clearly visible, provides the hint that it does. Operator is a function without the readable name.

    Java is generally designed about philosophy that some extra verbosity is not bad as it makes the code more readable. Constructs that do the same just have less code to type in used to be called a "syntax sugar" in the past. This is very different from the Python philosophy, for instance, where shorter is near always seen as better, even if providing less context for the second reader.

    0 讨论(0)
  • 2020-11-22 08:16

    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 BigInteger and similar immutable BigDecimal, 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.

    Isn't :

    Complex a, b, c; a = b + c;
    

    much simpler than:

    Complex a, b, c; a = b.add(c);
    
    0 讨论(0)
  • 2020-11-22 08:17

    The Java designers decided that operator overloading was more trouble than it was worth. Simple as that.

    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).

    0 讨论(0)
提交回复
热议问题