在网上看到了一道java认证的题目,关于java垃圾回收机制的。
在java基础和提高视频中没有讲过这些,想了解下,高手指点下
java垃圾回收的时间
题目如下:
How can you force garbage collection of an object?
A. Garbage collection cannot be forced
B. Call System.gc().
C. Call System.gc(), passing in a reference to the object to be garbage collected.
D. Call Runtime.gc().
E. Set all references to the object to new values(null, for example).
答案选 A |
|