Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JSF、JSP 中使用的表达式语言是否存在短路运算符?
我的意思是 &&,||Java 类比,如果很明显进一步评估布尔值没有意义,则停止评估。
&&
||
我观察到 , 运算符的用法and,or看起来它们没有短路。
and
or
绝对是短路运算符。
#{bean.left or bean.right}
当左手评估为真时,右手不会被评估。
#{bean.left and bean.right}
当左手评估为假时,右手不会被评估。