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
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号