1.

Can We Override A Private Method In Java?

Answer»

No, you cannot override a private method in Java because the private method is not inherited by the SUBCLASS in Java, which is ESSENTIAL for overriding. In fact, a private method is not visible to anyone outside the class and, more importantly, a call to the private method is resolved at compile time by using Type information as opposed to runtime by using the actual object.

No, you cannot override a private method in Java because the private method is not inherited by the subclass in Java, which is essential for overriding. In fact, a private method is not visible to anyone outside the class and, more importantly, a call to the private method is resolved at compile time by using Type information as opposed to runtime by using the actual object.



Discussion

No Comment Found