Groovy Lists contains()方法
2018-12-29 15:50 更新
如果此列表包含指定的值,则返回true。
句法
boolean contains(Object value)
参数
值 - 在列表中查找的值。
返回值
True或false,取决于值是否在列表中存在。
例子
下面是一个使用这个方法的例子 -
class Example {
static void main(String[] args) {
def lst = [11, 12, 13, 14];
println(lst.contains(12));
println(lst.contains(18));
}
}
当我们运行上面的程序,我们将得到以下结果 -
true false
以上内容是否对您有帮助:

免费 AI IDE


更多建议: