- Monday, August 31, 2009, 18:10
- Featured, Java
- 4,319 views
Garbage collection is a way in which Java recollects the space occupied by loitering objects. By doing so, it ensures that your application never runs out of memory (though we cannot be assured that the program will ever run out of memory).
Full story
- Wednesday, January 7, 2009, 18:34
- Featured, Java, Tutorial
- 6,987 views
In previous tutorial
Java Virtual Machine, An inside story..., we saw some basic of internals of JVM and how it is divided into different components that helps in execution of Java byte code. Java Byte code as we saw is packed in a file called class file (with .class extension). In this tutorial let us see the internals of a class file. How the ...
Full story