Java程序的输出|设置 4
预测以下Java程序的输出:
问题 1
// file name: Main.java
class Base {
protected void foo() {}
}
class Derived extends Base {
void foo() {}
}
public class Main {
public static void main(String args[]) {
Derived d = new Derived();
d.foo();
}
}
输出:编译器错误
foo() 在 Base 中受保护,在 Derived 中默认。默认访问更具限制性。当派生类覆盖基类函数时,不能对被覆盖的函数提供更多限制性访问。如果我们将 foo() 公开,那么程序可以正常运行而不会出现任何错误。 C++ 中的行为是不同的。 C++ 允许对派生类方法进行更严格的访问。
问题2
// file name: Main.java
class Complex {
private double re, im;
public String toString() {
return "(" + re + " + " + im + "i)";
}
Complex(Complex c) {
re = c.re;
im = c.im;
}
}
public class Main {
public static void main(String[] args) {
Complex c1 = new Complex();
Complex c2 = new Complex(c1);
System.out.println(c2);
}
}
输出:“Complex c1 = new Complex();”行中的编译器错误
在Java中,如果我们编写自己的复制构造函数或参数化构造函数,则编译器不会创建默认构造函数。此行为与 C++ 相同。