我有一个像这样的do-while循环
do {
SomeObject someObject = new SomeObject();
} while(some condition is met);
我想知道someObject
对象的生命周期是什么以及它们何时有资格获得GC collection
。
我有一个像这样的do-while循环
do {
SomeObject someObject = new SomeObject();
} while(some condition is met);
我想知道someObject
对象的生命周期是什么以及它们何时有资格获得GC collection
。