Java Switch Statement

后端 未结 8 2254
南笙
南笙 2021-02-07 13:48

I have a problem using switch statement when I tried to deal with a special situation. For example, I have 3 cases: A, B, C.

  • for A, I want to do statement_1 and st
8条回答
  •  眼角桃花
    2021-02-07 14:20

    You can do this:

    switch (variable){
      case A:  do statement_1; do statement_3; break;
      case B:  do statement_2; do statement_3; break;    
    }
    

提交回复
热议问题