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.
我在 Groovy 服务器页面中有以下代码:
如何检查 的值是否IntegerNameValueListName是一般的字符串,而不是将其仅与一个特定的字符串进行比较?
IntegerNameValueListName
IntegerNameValueListName具有以下值:
通常的 Javainstanceof运算符应该可以工作,但请记住 GString 值不是instanceof String这样,因此这可能会给您带来误报。取决于您想要实现的具体内容,一个简单的!= ''甚至是 Groovy 的真理test="${IntegerNameValueListName}"可能就足够了。
instanceof
instanceof String
!= ''
test="${IntegerNameValueListName}"