我正在通过方法创建对象。然后我想“摧毁”它。我需要以某种方式记住对指定对象的引用以调用destroy()它?我该怎么做?
public class Obj {
private int size;
private boolean exist;
private Obj(int size) {
this.size = size;
this.exist = true;
}
public static Obj getObj(int size) {
Obj s = new Obj(size);
return s;
}
public void destroy() {
exist = false;
}
}
青春有我
凤凰求蛊
喵喔喔
相关分类