Groovy Lists contains()方法
如果此列表包含指定的值,则返回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