if else if else 中的else语句的执行情况是什么样的?
发布网友
发布时间:2022-04-26 17:43
我来回答
共2个回答
热心网友
时间:2022-04-18 17:57
顺序判断:
(A) is true: -- 无论其它(B,C的状态) 均执行 {a}, 不再管后续的else了;
(A) is false and (B) is true: -- 无论C的任何状态, 均执行 {b}, 不再管后续的else了;
(A) is false and (B) is false and (C) is true: 执行 {c}, 不再管后续的else了;
(A), (B), (C) 均为 false: 执行 {d}
热心网友
时间:2022-04-18 19:15
这种语句,4个中只会执行一个,按照你判断的条件执行