interface Valu {
public double getMoney();
}
interface Protectable {
public void beProtected();
}
abstract class Animal {
private String name;
abstract void enjoy();
}
class GoldenMonkey extends Animal implements Valu,Protectable {
public double getMoney() {
return 10000;
}
public void beProtected() {
System.out.println("live in the room");
}
public void enjoy() {
System.out.println("高兴");
}
}
public class Valuable {
public static void main(String args[]) {
Valu v = new GoldenMonkey();
v.getMoney();
}
}
写了一段测试接口的代码 v.getMoney()方法什么都输出不出来?这是为什么? 不是应该输出class GodenMonkey类中的getMoney方法 返回值为10000才对吗?
__YXQ__
秃头披风侠0
司风0
相关分类