[Java] 纯文本查看 复制代码 //if 与 else if不得不说的故事
public class Test {
public static void main(String[] args) {
int count=0;
int a=50;
if(a==50) count++;
//else if会默认排除与之配套的if和上一层else if中的限制条件
else if(a<100) count++;
//输出结果:count=1;
System.out.println("count="+count);
}
}
|