rewritting method in subclass Archive
17 Oct 2014
Method Overriding in Java

A subclass inherits all public and protected methods from its super class. You can modify the superclass methods in subclass with the same method signature as defined in superclass. Some it is very important to modify superclass method in subclass to change or customize the implementation of superclass method. The following class Card Note :