Home > Java Programming > Garbage Collections > Questions and Answers
Exercise:
Q: |
2. public Object m() { Object o = new Float(3.14F); Object [] oa = new Object[l]; oa[0] = o; /* Line 5 */ o = null; /* Line 6 */ oa[0] = null; /* Line 7 */ return o; /* Line 8 */ } When is the Float object, created in line 3, eligible for garbage collection? | ||||||||||
|
Comment on this Question | |
Name: | |
|