What does `public static void main args` mean?
问题 I am not sure what this means, whenever before you write a code, people say this public static void main(String[] args) { What does that mean? 回答1: Here is a little bit detailed explanation on why main method is declared as public static void main(String[] args) Main method is the entry point of a Java program for the Java Virtual Machine(JVM). Let's say we have a class called Sample class Sample { static void fun() { System.out.println("Hello"); } } class Test { public static void main