如何检查,如果一些类实现接口? 当具有:
Character.Gorgon gor = new Character.Gorgon();
如何检查gor
实现Monster
接口?
public interface Monster {
public int getLevel();
public int level = 1;
}
public class Character {
public static class Gorgon extends Character implements Monster {
public int level;
@Override
public int getLevel() { return level; }
public Gorgon() {
type = "Gorgon";
}
}
}
是方法getLevel()
在覆盖Gorgon
正确的,所以它可以返回level
新的gor
产生的?