Groovy - 列表 contains()



如果此列表包含指定值,则返回 true。

语法

boolean contains(Object value)

参数

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
groovy_lists.htm
广告