如何從類中刪除java對象。比方說,我有一個類,如:從類中刪除java對象
class A
{
int hp;
public void update()
{
if(hp <= 0)
{
//here comes the problem. Something like: this.delete(); ??
}
}
}
,我在檢查它是否應該刪除本身我的主要方法有一個實例。
編輯:在我的案例中'A'是2D RTS中的風車類。它坐落在風車的ArrayList,有以下方法:
init(called when the game starts to load images)
update(this is where i want to delete the object)
draw(for rendering)
請定義「刪除」?請提供一些背景,*任何*背景。 –
......就像釋放內存一樣? – user2466076
你想'刪除'做的JVM不適合你? –