有没有优雅的方法来解决这个问题?
if (condition0) {
if(condition1) {
do thing 1
}
else if(condition2){
do thing 2
}
}
else {
if(condition2) {
do thing 2
}
else if(condition1){
do thing 1
}
}
do thing 1
和do thing 2
带有很多参数的函数调用,不知何故,似乎有不必要的重复。
有没有更好的方法来做到这一点?