DEVFYI - Developer Resource - FYI

Why isn't there operator overloading?

Java Interview Questions and Answers (part 3)


370. Why isn't there operator overloading?

Because C++ has proven by example that operator overloading makes code almost impossible to maintain. In fact there very nearly wasn't even method overloading in Java, but it was thought that this was too useful for some very basic methods like print(). Note that some of the classes like DataOutputStream have unoverloaded methods like writeInt() and writeByte().

(Continued on next question...)

Other Interview Questions