标题: 子类父类函数调用问题?求下面代码的输出 [打印本页] 作者: vaqh 时间: 2014-7-28 22:00 标题: 子类父类函数调用问题?求下面代码的输出 class Super{
public int get(){return 4;}
}
class Demo extends Super
{
public long get(){return 5;}
public static void main(String[] args)
{
Super s = new Demo();
System.out.println(s.get());
}
} 作者: 江苏孙浩 时间: 2014-7-28 22:07
运行了一下,要出错。因为两个get()返回类型不兼容,不能覆盖。作者: vaqh 时间: 2014-7-28 22:29