-
Java Switch语句(用法详解)
Switch语句在Java中是用来做决策的。与if-then和if-then-else语句不同,switch语句可以有许多可能的执行路径。语法switch语句的一般形式为:switch (expression) { case value1:
Switch语句在Java中是用来做决策的。与if-then和if-then-else语句不同,switch语句可以有许多可能的执行路径。语法switch语句的一般形式为:switch (expression) { case value1: