Hi
What is garbage collection. What is the process that is responsible for doing that in java G
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Oct 8, 2012, 9:18 AM
Please refer the below link
http://www.javaworld.com/javaworld/jw-08-1996/jw-08-gc.html
Thanks
Sivaraman DhamodaranPosted Oct 8, 2012, 6:58 AM
MyObj ob1 = new MyObj();
MyObj o2 = ob1;
Now reference count for MyObj is 2. When it becomes zero, MyObj will be deleted by Ref counter.