当前位置:  开发笔记 > 编程语言 > 正文

Java我不明白为什么在更改switch语句的顺序时会得到不同的输出

如何解决《Java我不明白为什么在更改switch语句的顺序时会得到不同的输出》经验,为你挑选了1个好方法。

我写的时候:

System.out.println("[move,new,restart,hint,solve,quit]>");
            String input = in.next();
            switch (input){
                case "restart":
                    System.out.println("You chose restart");
                    continue;
                case "quit"://Quits out of the program
                    cont = false;
                default:
                    break;
            }
            System.out.println("here");

我得到输出:

[move,new,restart,hint,solve,quit]>
restart
You chose restart
[move,new,restart,hint,solve,quit]>
quit
here

但当我切换case语句重启并退出时,我收到了不同的输出:我的代码:

System.out.println("[move,new,restart,hint,solve,quit]>");
            String input = in.next();
            switch (input){
                case "quit"://Quits out of the program
                    cont = false;
                case "restart":
                    System.out.println("You chose restart");
                    continue;

                default:
                    break;
            }
            System.out.println("here");

我得到输出:

[move,new,restart,hint,solve,quit]>
restart
You chose restart
[move,new,restart,hint,solve,quit]>
quit
You chose restart

我很难理解为什么case语句的顺序会影响输出.



1> T McKeown..:

break;的"退出"逻辑错过了您的案例

switch (input){
            case "quit"://Quits out of the program
                cont = false;
                break;
            case "restart":
                System.out.println("You chose restart");
                continue;

            default:
                break;
        }

推荐阅读
手机用户2402852387
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有