code
____________________________________________________________________________
class ParentClass
{
public ParentClass(String a) // no no-arg constructor
{}
}
public class test22 extends ParentClass
{
String str;
public test22(String a)
{ this.str = a; }
public static void main(String args[])
{
test22 t = new test22("String");
}
}
___________________________________________________________________________
suppose if the parentclass is an interface,then call to super() would not be automatically inserted.....
is it correct scenario, anupam sinha???