EL 中的等于:如果第一个操作数为空怎么办?
Equals in EL: what if the first operand is null?
如果我有这样一个 EL
表达式:
#{a == b}
如果 a
是 null
会怎样?不同版本的EL有区别吗?
我在哪里可以找到对此进行解释的官方规范?
From official EL specs 2.1 section 1.8.2:
If A is null or B is null return false
BigDecimal
和 BigInteger
有特殊情况。我不知道其他规格。
感谢大家的帮助和支持。
如果我有这样一个 EL
表达式:
#{a == b}
如果 a
是 null
会怎样?不同版本的EL有区别吗?
我在哪里可以找到对此进行解释的官方规范?
From official EL specs 2.1 section 1.8.2:
If A is null or B is null return false
BigDecimal
和 BigInteger
有特殊情况。我不知道其他规格。
感谢大家的帮助和支持。