JSF(P) EL 短路操作器

发布于 2024-10-31 10:51:05 字数 188 浏览 8 评论 0原文

JSF、JSP 中使用的表达式语言是否有短路运算符?

我的意思是 &&|| Java 模拟,如果很明显布尔值的进一步计算没有意义,则停止该计算。

我观察了 andor 运算符的使用情况,看起来它们没有短路。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嗼ふ静 2024-11-07 10:51:05

肯定是短路操作者。

#{bean.left or bean.right}

当左手评估为真时,右手不会被评估。

#{bean.left and bean.right}

当左手评估为 false 时,右手不会被评估。

It are definitely short circuit operators.

#{bean.left or bean.right}

The right hand won't be evaluated when the left hand evaluates true.

#{bean.left and bean.right}

The right hand won't be evaluated when the left hand evaluates false.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文