我有一个名为 Queen 的类,它是 Ant 的子类。Queen 的构造函数接受参数,并将这些参数传递给 Ants 构造函数,以及 Queen 的其他细节。现在,这就是它应该如何工作的方式。但是我发现 Ant 构造函数从未被调用过。我错过了什么吗?
public class Queen extends Ant
{
public Queen(int width, int height, Square[][] grid)
{
super(0, 0, width, height);
//grid[locationHeight][locationWidth].addQueen(this);
}
}
Ant 构造函数(我在这里有一些 println 语句,但在构造皇后时从未调用过它们):
public Ant(int id, int type, int width, int height)
{
antID = id;
antType = type;
isAlive = true;
width = width / 2;
height = height / 2;
setLocation(width, height);
if (antType == 0)
{
lifeSpan = 73000;
}
else
{
lifeSpan = 3650;
}
}