在 java 的开关大小写中使用字符串
2022-08-31 16:14:15
我需要将以下内容更改为 a - 同时检查 a ,以提高循环复杂性。if
switch
case
String
String value = some methodx;
if ("apple".equals(value)) {
method1;
}
if ("carrot".equals(value)) {
method2;
}
if ("mango".equals(value)) {
method3;
}
if ("orange".equals(value)) {
method4;
}
但我不确定我会得到什么价值。