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特定の1つの文字列とだけ比較しないようにするにはどうすればよいですか?
IntegerNameValueListName
IntegerNameValueListName次の値があります。
通常のJavainstanceof演算子は機能するはずですが、GString値は機能しないinstanceof Stringため、フォールスネガティブが発生する可能性があることに注意してください。何を達成しようとしているのかによっては、単純な!= ''、あるいはGroovyの真実でさえtest="${IntegerNameValueListName}"十分かもしれません。
instanceof
instanceof String
!= ''
test="${IntegerNameValueListName}"