gpt4 book ai didi

java - 将元素添加到列表时 Android 应用程序崩溃

转载 作者:行者123 更新时间:2023-12-01 15:29:31 25 4
gpt4 key购买 nike

我有一个定义如下的元素列表:

public List<Bullet> Bullets;
Bullet newBullet = new Bullet(0, 0, 0, 0, 0, 0, 0, 0);

当按下屏幕上的按钮时,我运行:

 newBullet.setProperties((int)(CannonCenterX + CannonEndX), (int)(CannonCenterY + CannonEndY), (int)(25*scaleX), (int)(25*scaleY), CannonEndX, CannonEndY, screenWidth, screenHeight);
Bullets.add(newBullet);

这应该更改 newBullet 元素的属性,并将其副本添加到项目符号列表中。然而,一旦我这样做,应用程序就会崩溃。

这里的线程部分:

// try locking the canvas for exclusive pixel editing on the surface
try {
canvas = this.surfaceHolder.lockCanvas();
synchronized (surfaceHolder) {
// update game state
this.gamePanel.update();

// draws the canvas on the panel
this.gamePanel.onDraw(canvas);
}
} finally {
// in case of an exception the surface is not left in
// an inconsistent state
if (canvas != null) {
surfaceHolder.unlockCanvasAndPost(canvas);
}
} // end finally

产生异常并且程序关闭。我不知道为什么将已经生成的元素添加到列表中会使程序崩溃。任何帮助表示赞赏。

-内森

最佳答案

您需要创建列表:

public List<Bullet> Bullets = new ArrayList<Bullet>();

关于java - 将元素添加到列表时 Android 应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9730274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com