Overloading operators in Java
Why is that Java does not provide for overloading of operators the way C++ does.
Overloading operators: When multiple definition exits for operators such as + or -. This is provided in C++
it caused more trouble than it was worth when someone other than the original programmer has to modify of debug code ... hard error to spot ... so, just use method calls
MikeD