For example
public void doSomething() {
Dog smallDog = new Dog();
smallDog.bark();
}
will the dog object be collected after this method is run?
|
For example
will the dog object be collected after this method is run? |
||||
|
|
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:
Then no, it won't be getting garbage collected! |
|||||||||||||
|
|
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. |
|||
|
Technically, it isn't possible to give and answer because we haven't seen the implementation for Generally, the answer is YES, the |
|||
|
|
|
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 |
|||
|
|
|
This blog post provides a good explanation on how the garbage collection process works. To summarize:
Therefore you shouldn't make assumptions on when any object will be garbage collected. |
|||
|
|
|
If somehow
|
|||||||||||||||
|