如果在while循环内,则不能突破while循环

时间:2015-09-30 15:05:24

标签: java loops if-statement while-loop break

我最近开始学习Java并在测试某些东西时遇到了问题。这可能是一个非常简单的问题,但我似乎无法解决它。 这是我的代码:

    int firstj = 1;

    if (firstj == 1) {
        String choice = "Type a number between 1 and 4";
        System.out.println(choice);
        while (true) {

            if (firstj == 1) {
                Scanner third = new Scanner(System.in);
                String thirdch = third.nextLine();

                while (true) {

                    if (thirdch.equals("1")) {
                        System.out.println("Show choice and accept input again ");
                        System.out.println(choice);
                        break;
                    } else if (thirdch.equals("2")) {
                        System.out.println("Show choice and accept input again ");
                        System.out.println(choice);
                        break;
                    } else if (thirdch.equals("3")) {
                        System.out.println("Show choice and accept input again ");
                        System.out.println(choice);
                        break;
                    }

                    else if (thirdch.equals("4")) {
                        // I need this to break the loop and move on to the
                        // "Done." string
                        break;
                    }

                    else {
                        System.out.println("Type a number between 1 and 4");
                        thirdch = third.nextLine();
                    }
                }

            }
        }
    }
    String done = "Done";
    System.out.println(done);

我想这样做,当你输入1,2或3时,你得到的字符串告诉你再次输入一个数字并接受用户输入,而当你输入4时,循环中断并转到完成字符串。如果您能用一个简单的代码帮助我解决这个问题,我将不胜感激,因为我不知道任何更高级的东西。

4 个答案:

答案 0 :(得分:7)

您可以标记循环,然后使用break语句中的标签指定要打破的循环,例如

outer: while (true) {
  while (true) {
    break outer;
  }
}

答案 1 :(得分:5)

打破嵌套循环的最具伸缩性的方法是将整个事物放在一个函数中并使用return

在Java中打破标签是另一种选择,但它可能会使代码变得脆弱:你可能会受到一些顽固的重构者的摆布,他们可能会倾向于将#34; break转移到标签"幸福地没有意识到后果;编译器无法警告这些恶作剧。

答案 2 :(得分:2)

您可以使用锁定停止,例如:

public static void main(String[] args) throws Exception {
    int firstj = 1;
    if (firstj == 1) {
        boolean lock = true;
        while (lock) {

            if (firstj == 1) {
                Scanner third = new Scanner(System.in);

                while (lock) {

                    System.out.println("Type a number between 1 and 4");
                    String thirdch = third.nextLine();
                    switch (thirdch) {
                    case "1":
                        System.out
                                .println("Show choice and accept input again ");
                        break;
                    case "2":
                        System.out
                                .println("Show choice and accept input again ");
                        break;
                    case "3":
                        System.out
                                .println("Show choice and accept input again ");
                        break;
                    case "4":
                        lock = false;
                        break;
                    }

                }
                third.close();

            }
        }
    }
    String done = "Done";
    System.out.println(done);
}

我希望它有所帮助。

答案 3 :(得分:1)

从描述中不太清楚,但是continue会让你跳到循环结束,继续循环的其余部分,你可以使用标志来控制你是否想要退出多个级别。