Question: Assume you have the code for three classes with the inheritance relationship: ClassC extends Class B and ClassB extends ClassA. ClassA has a method called

Assume you have the code for three classes with the inheritance relationship: ClassC extends Class B and ClassB extends ClassA. ClassA has a method called important Method that is overridden in both subclasses. a) Briefly explain: in which class will the compiler look for the definition of importantMethod given the following statements: ClassB myObject = new ClassC(); myObject.importantMethod(); b) Briefly explain: in which class will the runtime look for the definition of important Method given the following statements: ClassA myObject = new ClassC(); myObject.importantMethod()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
