Groovy - 列表 contains()


如果此列表包含指定值,则返回 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
groovy_lists.htm