Java Constructor
class Nest
{
Nest()
{
System.out.print("Nest");
}
Nest (long l)
{
this();
System.out.print(l);
}
Nest(int i)
{
this(i);
System.out.print(i*2);
}
}
Public static void main(String[] args)
{
int i = 4;
new Nest(i);
}
What would be the output?
Options
- Nest48
- Nest84
- Nest44
- Compile Error
CORRECT ANSWER : Compile Error
Write your comments