Java virtual machine interview questions
The Java virtual machine dynamically loads, links, and initializes classes and
interfaces. Loading is the process of finding the binary form of a class or
interface type with a particular name, a Class object to represent the class or
interface........................
Garbage collection in Java identifies and discards the objects that are no
longer needed by a program so that their resources can be reclaimed and
reused..................
The javap is a command that disassembles a class file. It prints out the
package, protected, and public fields and methods of the classes passed to it
to stdout................
|