java中途强制跳出递归_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java中途强制跳出递归

java中途强制跳出递归

 2014/5/25 16:12:32  twobrushes  程序员俱乐部  我要评论(0)
  • 摘要:文章来源:http://www.itnose.net/detail/6048612.html更多文章:http://www.itnose.net/type/1.html有些时候我们需要在中途强制跳出递归,而且还是需要一步跳出,而不一层一层的跳出,这时,我们可以采用抛异常的方法来实现。classTest{staticclassStopMsgExceptionextendsRuntimeException{}publicstaticvoidmain(Stringargs[]){try{run(0)
  • 标签:Java 递归

文章来源:http://www.itnose.net/detail/6048612.html?更多文章:http://www.itnose.net/type/1.html

有些时候我们需要在中途强制跳出递归,而且还是需要一步跳出,而不一层一层的跳出,这时,我们可以采用抛异常的方法来实现。

?

class="sycode" name="code"> 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);
    }
 
   
}

这个小例子就是实现该功能的方法

?

?

发表评论
用户名: 匿名