Hi frens,
Plzz...give ans to my qn following..
class A
{
String str;
A(A ob)
{
ob.str=str;
}
A(String s)
{
this.s=str;
}}
class Main
{
psvm(String a[])
{
A a=new A(null);
}
}
In the above code, which constructor will be called in main
Thanx & regards,
Sandhya