我只是想知道是否有更好的方法来解决我的情况:
我有 6 个独立变量要检查。但是,如果任何条件为真,则不应检查其他条件。通常我会写:
if (cond1 ) {
statement
} else {
if ( cond2 ) {
statement
} else {
if (cond3) {
statement
} else {
...
}
}
}
你肯定会承认它看起来不太好,或者虽然它有效,但它不容易阅读。您是否知道编写此类 if 语句的任何其他方法,可能使用其他符号或函数(switch?while?)