aspose file tools
The moose likes Beginning Java and the fly likes Garbage Collection Doubt Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Garbage Collection Doubt" Watch "Garbage Collection Doubt" New topic
Author

Garbage Collection Doubt

aresh babu
Ranch Hand

Joined: Aug 31, 2008
Posts: 65
How can we stop garbage collecting a user define object permanantly without assigning the references once again to that object?



Thanks in advance

Francisco Montes
Ranch Hand

Joined: Sep 30, 2009
Posts: 30
My understanding:

An object is eligible for garbage collection as soon as there is no references to it from any live thread.

So, unless you override the finally method of that object and make a reference variable (in a live thread) point to it... it may get garbage collected.


SCJP 1.6
Embla Tingeling
Ranch Hand

Joined: Oct 22, 2009
Posts: 237
aresh babu wrote:How can we stop garbage collecting a user define object permanantly without assigning the references once again to that object?


You assign the object reference to a variable that's static and final, like

static final Object o = new Objcet(); // object will never be GCed
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32654
    
    4
Francisco Montes wrote: . . . So, unless you override the finally method of that object and make a reference variable (in a live thread) point to it... it may get garbage collected.
By a "finally method," do you mean a finally block or a final reference?
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16483
    
    2

Campbell Ritchie wrote:
Francisco Montes wrote: . . . So, unless you override the finally method of that object and make a reference variable (in a live thread) point to it... it may get garbage collected.
By a "finally method," do you mean a finally block or a final reference?

I'm guessing that Francisco meant the "finalize" method.
Francisco Montes
Ranch Hand

Joined: Sep 30, 2009
Posts: 30
True, I meant "finalize" (oops). Thanks Paul. :-)
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Garbage Collection Doubt
 
Similar Threads
Is this true in Garbage Collection
GC
another question regarding garbage collection
doubt on garbage collection
Garbage Collection doubt