如果此List包含指定的值,则返回true。
boolean contains(Object value)
Value - 要在列表中查找的值。
是真还是假,具体取决于列表中是否存在该值。
以下是此方法的使用示例 -
class Example {
static void main(String[] args) {
def lst = [11, 12, 13, 14];
println(lst.contains(12));
println(lst.contains(18));
}
}
当我们运行上述程序时,我们将得到以下结果 -
true
false