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.
You can't do this yourself since Java doesn't permit operator overloading.
With one exception, however. + and += are overloaded for String objects.