Answered Questions

  • Overriding Methods

    Suppose a Super Class method throws an exception and this method is Overriden in the subclass with no exception. Now if you create a super class reference that has a subclass object. This throws a compile time error, Why?

    Star Read Best Answer

    Editorial / Best Answer

    bharathnav  

    • Member Since Oct-2008 | Oct 13th, 2008


    "Suppose a Super Class method throws an exception and this method is Overriden in the subclass with no exception. Now if you create a super class reference that has a subclass object. This throws a compile 
    Latest Answer: Because at run time, the super class will compiled first, so it will gives the run time error. ..."

    if the object has been created to the subclass and both the methods are non static then the method we overriden doesn't produce any errors or exceptions.

    techbuz

    • Dec 23rd, 2011

    throws exception in super class doesnt affest over-riding:code eg as follows: "java public class Ride{ void clay(){ System.out.println("am in base class"); } public static voi...