Switch case jumps to wrong case in javascript (how to properly use the break command)

前端 未结 4 1799
盖世英雄少女心
盖世英雄少女心 2020-12-12 05:08

My code is not so long so I am pasting all of it here.

The code is not complete but when I run it it first jumps to case \"start\" which it is supposed to, and then

相关标签:
4条回答
  • 2020-12-12 05:29

    The code will start running at the first matching "case", but it only stops running when it has reached a "break" or "return" statement;

    0 讨论(0)
  • 2020-12-12 05:48

    The problem is that you are missing the break keyword after your case code. Without the break, subsequent blocks will be executed, that is why end is executed after start code. You can read more about this on this W3Schools link.

    Additionally, from the JS reference:

    The optional break statement associated with each case label ensures that the program breaks out of switch once the matched statement is executed and continues execution at the statement following switch. If break is omitted, the program continues execution at the next statement in the switch statement.

    So your code should look like:

    function stepStream(stream,step){
                    switch (stream[step]){
                        case "start":
                            console.log("Started reading stream...");
                            break;
                        case "end":
                            var success = "Finished reading dataStream.";
                            console.log(success);
                            return success;
                        default:
                            throw "Data stream format is bad";                  
                        case "gesture":
                            //commUGesture(stream[i+1]);
                            //createLogLine("robot:CommU","event:gesture:"+stream[i+1]);
                            console.log("Running case gesture! But why?");
                            step+=1;
                            stepStream(stream,step);
                            break;
                        case "say":
                            step+=1;
                            stepStream(stream,step);
                            break;
                        case "sleep":
                            step+=1;
                            stepStream(stream,step);
                            break;
                    }
    

    Your "end" case has a return at the end, hence the code doesn't fall through to the other cases. Ideally, there should be a break at the end of each.

    0 讨论(0)
  • 2020-12-12 05:48

    You forgot to add a break statement in the start block, therefore it falls through to the end block.

    0 讨论(0)
  • 2020-12-12 05:53

    Problem is simple all switch case have to end with break or return statements in your case that is missing.

    switch(var1)
    {
        case "start":
            console.log("Started");
            break;
        case "end":
             console.log("stopped");
             return "";
         .
         .
         .
    }
    
    0 讨论(0)
提交回复
热议问题