开发者

Java garbage collector and how it knows what objects need to be freed from memory

I've read from multiple sources that a java garbage collector frees the mem开发者_如何学Pythonory of objects that are not being used. My question is how does it know its not being used? Am i correct to say that if i initialized some array, and that array was never referenced used or modified that the space in memory for that variable would be freed?

Thanks


then it will be a candidate for garbage collector to be collected. if there is no reference to this object, it will be a candidate. When it will be collected, it depends on the strategy of GC.


The garbage collector only frees memory when it needs to. So there is no guarantee it will ever be freed.

Any object which is not reachable from the Thread stacks via a hard reference can be freed.


As per specs you can request the GC but can not force it.

In your case the array will be a candidate for GC, when ever the JVM determines that it requires memory it kicks off GC, usually it is when the available memory 15% of the over all memory, this is what I observed on IBM JVM, but not always true.


garbage collector uses a non deterministic approach...i.e. you will never know when it will run...you can request for it but never be sure that it will run as soon as you call it...

the example you provided for the array will be cleaned from memory only if there is absolutely no reference at all in your program or it ran out of all the references to itself after executing all of them, but you can't be sure when that memory will be freed...

you can think of the garbage collector as a lazy guy ....but, why blame it ,after all it does all the dirty work of cleaning ;)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜