以下代码的输出结果是? public class B
{
public static B t1 = new B();
public static B t2 = new B();
{
System.out.println("构造块");
}
static
{
System.out.println("静态块");
}
public static void main(String[] args)
{
B t = new B();
}
}
https://www.nowcoder.com/questionTerminal/ab6eb06face84c4e81ab5bc6f0f7f258