温馨提示×

java如何结束当前方法

小亿
85
2024-09-03 08:35:21
栏目: 编程语言

在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

0