Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example

public void doSomething() {
   Dog smallDog = new Dog();
   smallDog.bark();
}

will the dog object be collected after this method is run?

share|improve this question
When else would the Dog instance be collected except AFTER it was created? :-P – Tim Bender Jul 18 '12 at 19:18

6 Answers

up vote 5 down vote accepted

It can become eligible to be collected when the method returns. When garbage collection actually happens is some unknown time in the future.

It is impossible to tell for sure without seeing the implementation of bark().

If this is your bark:

public void bark() {
   BarkListeners.callBack(this);
}

public class BarkListeners {
  private static final List<Dog> barkers = new ArrayList<Dog>();

  public static void callBack(Dog dog) {
    barkers.add(dog);
  }
}

Then no, it won't be getting garbage collected!

share|improve this answer
1  
+1 great counter example! – assylias Jul 18 '12 at 19:14
+1 - beat me to it. I wrote essentially the same thing. – Tim Bender Jul 18 '12 at 19:16
great explanation. So it would only be collected if there are no more calls towards it. – Yicanis Jul 18 '12 at 19:22
2  
There's one more possibility - that it won't even need garbage collecting. The JIT can perform escape analysis, which checks if a number of preconditions are fulfilled (no references to the object escape outside the local context, it doesn't have a finalizer, possibly more). If these preconditions are met, the object can be allocated on the stack = no GC needed. – gustafc Jul 18 '12 at 20:06

Simply no. I mean, the timing does not have to be like that.

All Java Objects are allocated in the heap and collected by the GarbageCollector. And GarbageCollector runs in background, with almost no constraint on when to perform actual garbage collection.

share|improve this answer
And the GarbageCollectorruns when the JVM wishes. – AW101 Jul 18 '12 at 19:10
s/when /when and if /. There's no guarantee GC will run at all. – cHao Jul 18 '12 at 19:39

Technically, it isn't possible to give and answer because we haven't seen the implementation for Dog#bark().

Generally, the answer is YES, the Dog instance will be collected AFTER the method is run, it just isn't possible to know exactly when. The reason for this is that unless the bark method shares the reference to the Dog object with another object, the particular instance of Dog will no longer be reachable. The next time the Garbage Collector runs, it will determine that Dog is not reachable and collect the heap space that was used to keep it.

share|improve this answer

It depend on reach ability of the object. If object is not reachable then it is eligilble for GC. When to GC is dependent on JVM implementation. Truth About Garbage Collection

share|improve this answer

This blog post provides a good explanation on how the garbage collection process works. To summarize:

An Object becomes eligible for Garbage collection if its not reachable from any live threads or any static refrences. It (the Garbage Collector) will only trigger if JVM thinks it needs a garbage collection based on Java heap size.

Therefore you shouldn't make assumptions on when any object will be garbage collected.

share|improve this answer

Dog object will be garbage collected, or marked for garbage collection because smallDog reference will be deleted when doSomething() method finishes execution/returns control to caller only in case Dog object have no reference pointing to it.

If somehow smallDog is assigned to other Dog reference like in @Affe's example, it will not be marked for garbage collection.

Dog object pointed by smallDog reference will be deleted by garbage collector when it gets called(Again condition is no reference is pointing to object). Garbage Collector gets called periodically by JVM.

Truth about GC

share|improve this answer
1  
downvoter need explaination – Nandkumar Tekale Jul 18 '12 at 19:18
1  
See the other answers - depending on what bark does, the dog reference might still be reachable. – assylias Jul 18 '12 at 19:23
You're making unwarranted assumptions. The object referenced by smallDog may be eligible for collection, but whether it actually is eligible depends on the behavior of Dog() and Dog.bark. And eligibility doesn't mean it will be collected at any particular point in time -- if there's no memory pressure, the object may not be collected til the app finishes, if even then. (Finalizers, for example, won't necessarily run -- meaning the object will still be "alive" right up until the app exits -- unless you call runFinalizersOnExit(), which is deprecated for thread safety reasons.) – cHao Jul 18 '12 at 19:25
@assylias: so you mean when method doSomething() returns, still object reference smallDog is on stack and object pointed by smallDog will not be marked/made eligible for garbage collection. In my answer, I am saying when method finishes/returns. – Nandkumar Tekale Jul 18 '12 at 19:29
Add to all that, there's not even a hard requirement that there be a GC, much less that it run at a particular time or collect every eligible object. Whether, when, and how GC happens is implementation specific. – cHao Jul 18 '12 at 19:30
show 11 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.