Java中的switch-case语句
Posted Auro
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中的switch-case语句相关的知识,希望对你有一定的参考价值。
class ArithmeticFunction {
public static int arithmetic(int a, int b, String operator) {
int result=0;
switch(operator){
case "add":
result=a+b;
case "subtract":
result=a-b;
case "multiply":
result=a*b;
case "divide":
result=a/b;
return result;//语句放这里才有效
}
return result;//语句放这里是无效的,result的值就为0
}
}
以上是关于Java中的switch-case语句的主要内容,如果未能解决你的问题,请参考以下文章