Suppose in my program one superclass in which only one default constructor says A and two subclasses i.g. class B extends A and class C extends B in both classes also have only one deafult constructor when i am creating object of calss c that means constructor of class A,B then C can be call (in order) But i have to first call the constructor of class C that means in order as c,b,a how it can do ? Please tell me
View All Comments
| View Tutorial