本帖最后由 黑马杨晨 于 2012-8-27 15:37 编辑
1. 请问以下程序会输出什么?
public class Test {
public static void main(String[] args) {
Parent parent = new Parent();
Parent child = new Child();
System.out.println(parent.getName());
System.out.println(child.getName());
}
}
class Parent {
public static String getName() {
return "Parent ";
}
}
class Child extends Parent {
public static String getName() {
return "Child ";
}
}
2. 请问以下程序会输出什么?
public class Test {
public static void main(String[] args) {
for(int i = 0; i <= 10; i++)
Integer k = new Integer(i);
System.out.println( "Java Puzzlers ");
}
}
3. 请补全 i 的声明(要求:i 不允许为 float、double、Float 和 Double 类型)让其能输出“Hello World”。
public class Test {
public static void main(String[] args) {
________________; // 补全 i 的声明
if( i != i + 0) {
System.out.println( "Hello World ");
}
}
}
|