以下代码执行后输出结果为: public class Test ...
public class Test
{
public static Test t1 = new Test()
{
System.out.println("blockA")
}
static
{
System.out.println("blockB")
}
public static void main(String[] args)
{
Test t2 = new Test()
}
}