JSF(P) EL 短路操作器
JSF、JSP 中使用的表达式语言是否有短路运算符?
我的意思是 &&
、||
Java 模拟,如果很明显布尔值的进一步计算没有意义,则停止该计算。
我观察了 and
、or
运算符的使用情况,看起来它们没有短路。
Are there short circuit operators for Expression Language used in JSF, JSP?
I mean &&
,||
Java analog,when if it's obvious that further evaluation of boolean has no sense, that evaluation is stopped.
I observed usage of and
, or
operators and looks like they're not short circuit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
肯定是短路操作者。
当左手评估为真时,右手不会被评估。
当左手评估为 false 时,右手不会被评估。
It are definitely short circuit operators.
The right hand won't be evaluated when the left hand evaluates true.
The right hand won't be evaluated when the left hand evaluates false.