The method signature of a Java main() method is:
public static void main(String[] args){ ... }
Is the
Before the main method is called, no objects are instantiated. Having the static keyword means the method can be called without creating any objects first.