问题详情

Given:   11. public void genNumbers() {   12. ArrayList numbers = new ArrayList();   13. for (int i=0; i<10; i++) { 14. int value = i * ((int) Math.random());   15. Integer intObj = new Integer(value);   16. numbers.add(intObj);   17. }   18. System.out.println(numbers);   19. }   Which line of code marks the earliest point that an object referenced by intObj becomes a  candidate for garbage collection?()


A、&ensp;Line&ensp;19

B、&ensp;The&ensp;object&ensp;is&ensp;NOT&ensp;a&ensp;candidate&ensp;for&ensp;garbage&ensp;collection.

C、&ensp;Line&ensp;17

D、&ensp;Line&ensp;16

E、&ensp;Line&ensp;18

时间:2021-07-20 00:02 关键词: 1Z0-853

答案解析

A
相关问题