The method signature of a Java main() method is:
public static void main(String[] args){ ... }
Is the
If the main method would not be static, you would need to create an object of your main class from outside the program. How would you want to do that?