i want to call there A's class constructor using "super" keyword how it is possible
help me plz.....
class A
{}
class B extends A
{}
class C extends B
{
i want to call here A's class constructor using "super" keyword how it is possible
help me plz.....
}
class D
{
A a=new A();
}