在Java中,要结束当前方法,可以使用return
关键字。return
关键字可以用于立即结束当前方法的执行,并返回到调用该方法的地方。以下是一个简单的示例:
public class Test {
public static void main(String[] args) {
System.out.println("Before calling the method");
endMethodExample();
System.out.println("After calling the method");
}
public static void endMethodExample() {
System.out.println("Inside the method");
return; // 结束当前方法
System.out.println("This line will not be executed");
}
}
在这个示例中,endMethodExample()
方法中的return
语句会导致方法提前结束,因此"This line will not be executed"
这行代码不会被执行。当你运行这个程序时,输出将是:
Before calling the method
Inside the method
After calling the method