设有以下程序class Test{ Test(int i) { System.out.println(“Test(” +i +”)”); }}public class Q12 { static Test t1 = new Test(1); Test t2 = new Test(2); static Test t3 = new Test(3); public static void main(Str
单选题
设有以下程序class Test{ Test(int i) { System.out.println(“Test(” +i +”)”); }}public class Q12 { static Test t1 = new Test(1); Test t2 = new Test(2); static Test t3 = new Test(3); public static void main(Str