A Java method is a collection of statements that are grouped together to perform an operation . When you call the System. out. println() method, for example, the system actually executes several statements in order to display a message on the console.
Read moreCan I declare a method in main Java?
No, you can’t (directly *) defined methods inside other methods in Java (and the main method is no special case here). What you want to do is to put the method in the same class as main . If main needs to call it without creating an instance of the class, then it needs to be static , but it need not be public .
Read more