JVM Architecture
JVM Architecture
Hello readers! In the previous article of JVM series, developers learned about
the Java Virtual Machine (JVM) and it’s architecture. This tutorial will help developers
to correctly answer the questions on below topics:
ClassLoaderSubsystem
Runtime Data Areas
1. Introduction
Before moving further let’s take a look at the Java Virtual Machine and its basic
characteristics.
System.out.println("Test.getClass().getClassLoader()?= " +
2
Test.class.getClassLoader());
Class.forName("com.jcg.classloading.test.Test",
5
true, Test.class.getClassLoader().getParent());
Uniqueness: According to this:
Class loaded by the parent classloader should not be again loaded by the child
classloader