欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java 跳出递归循环问题解决办法

程序员文章站 2023-12-12 21:37:34
 使用异常跳出循环 1、如果方法体内含有需要抛出异常的对象,让方法直接抛出异常,不要在方法体内捕获 public void xxxx() throws...

 使用异常跳出循环

1、如果方法体内含有需要抛出异常的对象,让方法直接抛出异常,不要在方法体内捕获

public void xxxx() throws exception

2、如果方法体内不含有需要抛出异常的对象

class test {
   static class stopmsgexception extends runtimeexception {
   }
  public static void main(string args[]) {
    try {
      run(0);
    } catch (stopmsgexception e) {
      system.out.println(e);
    }
  }
 
  public static void run(int t) {
 
    if (t > 20) {
      // 跳出
      throw new stopmsgexception();
    }
    // 执行操作
    system.out.println(t);
    // 递归
    run(t + 1);
  }
}

 感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

上一篇:

下一篇: