我知道在 Java 中,当你有少数情况时不应该使用switchif else if
语句,在这种情况下最好使用.
groovy 也是如此吗?
这两个代码之间哪个性能更高?
myBeans.each{
switch it.name
case 'aValue':
//some operation
case 'anotherValue:
//other operations
}
或者:
myBeans.each{
if(it.name == 'aValue'){
//some operation
}
else if (it.name =='anotherValue){
//other operations
}
}