我有一个抽象类Entity.java。我还有一个扩展Entity类的TransportUnit.java类。实体将使用String名称和int lifePoints构造。运输单元应使用相同的结构,另外还有一个空套。我的问题是如何编写TransportUnit类的构造函数,为什么?提前谢谢。
答案 0 :(得分:2)
你可以用与普通构造函数相同的方式编写它,只需调用super()
设置s;
public TransportUnit(String name, int lifePoints){
super(name, lifePoints);
s = new HashSet(); //or other type of set
}