Method main in Java

The main() method is the entry point to the program. An application can have several such methods. If the method is absent, then compilation is possible, but at startup the error `Error: Main method not found` will be received.

public static void main(String[] args) {} 


Read also:


Comments

Popular posts from this blog

Rocks and Diamonds

Functional interfaces in Java

Object class in Java