12
终止if…else if带有else子句的构造有什么好处?
我们的组织有一个必需的编码规则(无任何解释): if…else if构造应以else子句终止 范例1: if ( x < 0 ) { x = 0; } /* else not needed */ 范例2: if ( x < 0 ) { x = 0; } else if ( y < 0 ) { x = 3; } else /* this else clause is …