Very Urgent : Garbage Collection in JAVA
Plz tell me:
1 public class x{
2 public Object m(){
3 Object o=new Float(2.14F);
4 Object [] oa=new Object[1];
5 oa[0]=o;
6 o=null;
7 return o;
8 }
9 }
When is the Float object creation in line 3 eligible for garbage collection ?

