在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