A method with a return value:
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)
The return
keyword finished the execution of a method, and can be used to return a value from a method.
Tip: Use the void
keyword to specify that a method should not have a return value:
A method without any return values:
public class Main {
static void myMethod() {
System.out.println("I just got executed!");
}
public static void main(String[] args) {
myMethod();
}
}
Read more about methods in our Java Methods Tutorial.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!