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.
Operator overloading is used in Java for the concatenation of the String type:
String concat = "one" + "two";
However, you cannot define your own operator overloads.