sagie-techblog.comUnderstanding Java-2All about public static void main(String[] args) JVM looks for the main method to execute the java program. The signature of the main method should be as defined above so that JVM can recognize it as the entry point. public - It is an access specifi...Jan 31, 2023·2 min read
sagie-techblog.comUnderstanding Java -1Java is platform-independent because of byte code and JVM. Execution of a java program As you can see from the image above, the source code(.java) is compiled into byte code, the .class file, which is platform-independent. This byte code is converte...Jan 27, 2023·2 min read