单选题:阅读下列程序:
阅读下列程序:
class Test {
private static String name;
static {
name = "World";
System.out.print (name);
}
public static void main(String[] args) {
System.out.print("Hello");
Test test = new Test();
}
}
下列选项中,程序运行结果是( )
A.HelloWorld
B.WorldHello
C.Hello
D.World
答案:B
class Test {
private static String name;
static {
name = "World";
System.out.print (name);
}
public static void main(String[] args) {
System.out.print("Hello");
Test test = new Test();
}
}
下列选项中,程序运行结果是( )
A.HelloWorld
B.WorldHello
C.Hello
D.World
答案:B