调用方法
要使用Java调用方法,请写上该方法的名称,后跟两个括号()和一个分号;在以下示例中,myMethod() 用于在调用文本时打印文本(动作):
在里面main,调用 myMethod() 方法:
public class MyClass {
static void myMethod() {
System.out.println("I just got executed!");
}
public static void main(String[] args) {
myMethod();
}
}
// 输出 "I just got executed!"
尝试一下
一个方法也可以多次调用:
public class MyClass {
static void myMethod() {
System.out.println("I just got executed!");
}
public static void main(String[] args) {
myMethod();
myMethod();
myMethod();
}
}
// I just got executed!
// I just got executed!
// I just got executed!
尝试一下