InterviewSolution
| 1. |
What Is Overriding? |
|
Answer» To override a method, a subclass of the class that originally declared the method MUST declare a method with the same NAME, return type (or a subclass of that return type), and same parameter LIST. To override a method, a subclass of the class that originally declared the method must declare a method with the same name, return type (or a subclass of that return type), and same parameter list. |
|