Please can you tell me if it is possible to overload operators in Java? If it is used anywhere in Java could you please tell me about it.
|
|
|
|
|
|
|
No, Java doesn't support user-defined operator overloading. The only aspect of Java which comes close to "custom" operator overloading is the handling of + for strings, which either results in compile-time concatenation of constants or execution-time concatenation using StringBuilder/StringBuffer. You can't define your own operators which act in the same way though. For a Java-like (and JVM-based) language which does support operator overloading, you could look at Groovy. |
||
|
|
|
|
You can't do this yourself since Java doesn't permit operator overloading. With one exception, however. + and += are overloaded for String objects. |
||
|
|
|
|
Operator overloading is used in Java for the concatenation of the String type:
However, you cannot define your own operator overloads. |
||
|
|
|
|
Java does not allow operator overloading. The preferred approach is to define a method on your class to perform the action: |
||
|
|
|
In addition to all the people pointing out that |
||
|
|
