为什么一个简单的布尔值的 if/else if/else 没有给出“无法访问的代码”错误
2022-08-31 16:44:03
为什么此代码未给出“无法访问的代码”错误?因为布尔值只能是真或假。
public static void main(String args[]) {
boolean a = false;
if (a == true) {
} else if (a == false) {
} else {
int c = 0;
c = c + 1;
}
}