Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within OCPJP
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Tim Cooke
Campbell Ritchie
paul wheaton
Ron McLeod
Devaka Cooray
Sheriffs:
Jeanne Boyarsky
Liutauras Vilda
Paul Clapham
Saloon Keepers:
Tim Holloway
Carey Brown
Piet Souris
Bartenders:
Forum:
Programmer Certification (OCPJP)
Garbage collection question from Exam lab
Babugouda patil
Ranch Hand
Posts: 35
I like...
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi,
Please anyone explain me this code diagrammatically? According to
examlab
answer 2 object will be garbage collected please explain me
1. class A{ 2. 3. A a1; 4. A a2; 5. 6. public void finalize(){ 7. System.out.println("-"); 8. } 9. 10. public static void main(String args[]){ 11. A s1=new A(); 12. s1.a1=new A(); 13. s1.a2=s1; 14. s1.a1.a2=new A(); 15. s1.a1.a2.a2=new A(); 16. s1.a1.a2.a2.a1=s1.a1; 17. s1.a2.a1.a2=null; 18. System.gc(); 19. } 20. 21. }
SCJP 1.6 91%
Take certification exam as a point of learning not just for certificate
nikunj jariwala
Greenhorn
Posts: 17
posted 13 years ago
1
Number of slices to send:
Optional 'thank-you' note:
Send
Check out the solution to your problem.
http://www.the-tech-talent.com/Misc/Garbage-collection-question-from-Exam-lab
Enjoy!!!
Thanks,
Nikunj Jariwala
http://www.the-tech-talent.com
Babugouda patil
Ranch Hand
Posts: 35
I like...
posted 13 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Thank you very much it helped me
SCJP 1.6 91%
Take certification exam as a point of learning not just for certificate
Don't get me started about those stupid
light bulbs
.
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Confusion in Garbage Collection
Garbage collection
Garbage collection
exam lab gc question
Garbage Collection
More...