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
Win a copy of
Eclipse Collections Categorically: Level up your programming game
this week in the
Open Source Projects
forum!
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:
Campbell Ritchie
Tim Cooke
paul wheaton
Ron McLeod
Jeanne Boyarsky
Sheriffs:
Paul Clapham
Saloon Keepers:
Tim Holloway
Roland Mueller
Bartenders:
Forum:
Programmer Certification (OCPJP)
Garbage collection question from Exam lab
Babugouda patil
Ranch Hand
Posts: 35
I like...
posted 14 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 14 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 14 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
Because those who mind don't matter and those who matter don't mind - Seuss. Tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
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...