例如,此代码有效吗?
class abc{
int x,y;
abc(int x,int y){
this.x=x;
this.y=y;
while(true)
update();
}
public void update(){
x--;
y--;
if(y==0)
this=null;
}
}
如果以上不成立,请解释原因。我需要一个在某些迭代后不再存在的类。请提出上述方法的替代方案。