Example
A method that does not return any values:
public class Main {
static void myMethod() {
System.out .println("I just got executed!");
}
public static void main(String[] args ) {
myMethod();
}
}
|
Definition and Usage
The void keyword indicates that a method does not return any value.
More Examples
Hint: If you intend for a method to yield a value, you can utilize a primitive data type (e.g., int, char, etc.) in lieu of void, and incorporate the return keyword within the method.
Example
public class Main {
static int myMethod(int x ) {
return 5 + x ;
}
public static void main(String[] args ) {
System.out .println(myMethod(3));
}
}
// Outputs 8 (5 + 3)
|