2020
11-19
11-19
Java彻底消灭if-else的8种方案
优化方案1:提前return,去除不必要的else如果if-else代码块包含return语句,可以考虑通过提前return,把多余else干掉,使代码更加优雅。优化前:if(condition){//doSomething}else{return;}优化后:if(!condition){return;}//doSomething优化方案2:使用条件三目运算符使用条件三目运算符可以简化某些if-else,使代码更加简洁,更具有可读性。优化前:intprice;if(condition){price=80;}els...
继续阅读 >