试题详情

对布尔表达式进行短路求值是指在确定表达式的值时,没有进行所有操作数的计算。对于布尔表达式 “a or ((b>c) and d)”,当(34)时可进行短路计算。

Aa的值为 true

Bd的值为 true

Cb的值为 true

Dc的值为 true