例如,该法典是否有效?
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;
}
}
如果上述情况无效,请解释原因。 我需要一个等级,即经过某些改动后不再存在。 请建议采用上述办法。