News

Bootstrap class loader: Responsible for loading the core Java classes that are required for the JVM to function. Extension class loader: Loads classes that are part of Java extensions.
When compiling class initializers and class initialization blocks, the Java compiler stores the compiled bytecode (in top-down order) in a special method named <clinit>().
The entry point of a standalone Java application is the main method or function. In the age of Servlets and JSPs, Java’s main function took a backseat to these technologies that were initialized with ...
Java Console class input and ouput The easiest way to garner user input in a Java program is to use the System’s Console class. Introduced in Java 6, Java’s System Console class provides two simple ...