Java methods

Method

When a Java method executes a Java file, the main method is automatically executed. The main method gives instructions to each method, and each method performs its own processing. Execute Main.java => main method => Each method (method 1) (method 2) (method 3) and so on. Method definition

Main.java


public static void method name() {
Process to be executed;
}

[Example]

Main.java


class Main {  //Main class block
  public static void main(String[] args) {  //main method is called
    hello();  //The hello method is called inside the main method
  }
  public static void hello() {  //Good morning is executed in the hello method
    System.out.println("Good morning");
  }
}  //Main class block

Recommended Posts

Java methods
Java methods
Java class methods
Java
Java
(Note) Java classes / variables / methods
[Java] Generics classes and generics methods
Check Java9 Interface private methods
Java methods and method overloads
About Java class variables class methods
Java abstract methods and classes
Java learning (0)
Studying Java ―― 3
[Java] array
Java protected
[Java] Annotation
About Java static and non-static methods
Java array
Studying Java ―― 9
Java scratch scratch
Java method
java (constructor)
Java array
[Java] ArrayDeque
java (override)
java (method)
Various methods of Java String class
Java Day 2018
Java string
java (array)
Java static
Java serialization
java beginner 4
JAVA paid
Studying Java ―― 4
Java (set)
java shellsort
[Java] compareTo
Studying Java -5
java reflexes
java (interface)
Java memorandum
☾ Java / Collection
Java array
Studying Java ―― 1
[Java] Array
[Java] Polymorphism
Studying Java # 0
Java review
java framework
Java features
[Java] Inheritance
FastScanner Java
Java features
java beginner 3
Java memo
java (encapsulation)
Java inheritance
[Java] Overload
Java basics
Decompile Java