GC – 2 [ Garbage Collectors ]
Garbage Collectors are the implementations of garbage collections. Util today, with the development of java, it has derived...
GC – 1 [ Garbage Collection ]
Garbage Collection is another important part of JVM execution engine. It tracks each and every object available in...
JVM – 6 [ Execution Engine ]
The execution engine runs the bytecode that has been loaded into the JVM’s runtime data areas by the...
JVM – 5 [ Threads Shared Runtime Data Area ]
Memory is a very important system resource. It is the intermediate bridge between the hard disk and the...
JVM – 4 [ Thread Private Runtime Data Area ]
Memory is a very important system resource. It is the intermediate bridge between the hard disk and the...
JVM – 3 [ Class Loading ]
Loading is the first stage in java class life cycle. During this stage, class loader is in charge...
JVM – 2 [ Class Life Cycle ]
The life cycle of a java class includs 5 stages : load, link, initialize, use, unload. The first...
JVM – 1 [ Byte Code ]
The computer cannot run directly java code (.java), it must be compiled into bytecode (.class), then it can...
Collections Framework – 5 [ Map ]
The Map interface in Java is part of the Java Collections Framework and provides a way to store...