class test
{
test()
{
System.out.println("Constructor");
}
{
System.out.println("Hai");
}
}
public class sample
{
public static void main(String [] a)
{
test t = new test();
}
}
в приведенном выше коде, почему оператор, заданный в фигурных скобках ((i.e) "Hai" ), печатается до выполнения constuctor.