java如何一次性退出所有递归
答案:3 悬赏:30 手机版
解决时间 2021-02-24 08:18
- 提问者网友:那叫心脏的地方装的都是你
- 2021-02-23 12:44
java如何一次性退出所有递归
最佳答案
- 五星知识达人网友:几近狂妄
- 2021-02-23 14:06
public class Main {
public static void main(String args[]) {
System.out.println("start!");
try {
find(0);
} catch (StopMsgException e) {
System.out.println(e);
}
System.out.println("done!");
}
private static void find(int level) {
if (level > 10) {
// 跳出
throw new StopMsgException();
}
// 执行操作
System.out.println(level);
// 递归
find(level + 1);
}
static class StopMsgException extends RuntimeException {
}
}
public static void main(String args[]) {
System.out.println("start!");
try {
find(0);
} catch (StopMsgException e) {
System.out.println(e);
}
System.out.println("done!");
}
private static void find(int level) {
if (level > 10) {
// 跳出
throw new StopMsgException();
}
// 执行操作
System.out.println(level);
// 递归
find(level + 1);
}
static class StopMsgException extends RuntimeException {
}
}
全部回答
- 1楼网友:深街酒徒
- 2021-02-23 15:53
在内的循环里把外层循环的条件都破掉就可以了啊 ,java好像是不带标记的循环
- 2楼网友:封刀令
- 2021-02-23 14:36
public class Main {
public static void main(String args[]) {
System.out.println("start!
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯