可以,然后呢
- 创建了新的 Zombie 变量。
private Zombie zombieA;
僵尸变量初始化
zombieA = new Zombie(1);
在 Zombie 类中调用构造函数:
public Zombie(int type) { this.type = type; x=200; y=100; dx=1; paintA.setColor(Color.RED);}
基本上,我希望游戏类创建一个新的僵尸,类型为 1,它将通过开关和案例来确定要创建的僵尸类型(级别 1=10)。问题是当我运行它时,我的应用程序强制关闭,并且出现错误:
zombieA = new Zombie(1);
从初始类和错误:
public Zombie(int type) {
来自僵尸班。我一遍又一遍地检查它,我只是看不到问题,有人注意到有什么问题吗?