gpt4 book ai didi

java - 如何检查 EL 中的 boolean 条件?

转载 作者:IT老高 更新时间:2023-10-28 11:38:30 26 4
gpt4 key购买 nike

这对吗?

<c:if test="${theBooleanVariable == false}">It's false!</c:if>

或者我可以这样做吗?

<c:if test="${!theBooleanVariable}">It's false!</c:if>

最佳答案

您可以查看 EL(表达式语言)描述 here .

您的两个代码都是正确的,但我更喜欢第二个,因为将 boolean 值与 truefalse 进行比较是多余的。

为了更好的可读性,您还可以使用 not 运算符:

<c:if test="${not theBooleanVariable}">It's false!</c:if>

关于java - 如何检查 EL 中的 boolean 条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3915716/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com