Mon Aug 24, 2009 5:11 pm
public class JavaGC {
public static void main(String args[])
{
TestGC obj1 = new TestGC();
TestGC obj2 = new TestGC();
TestGC obj3 = obj1.dumpIt(obj2);
obj1 = null;
// What are the eligible objects here for GC .
// Am here .
}
}
class TestGC
{
Long id;
TestGC dumpIt(TestGC testGC)
{
testGC = null ;
return testGC ;
}
}
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.