Groovy - contains()



检查序列中是否包含某个特定值

语法

boolean contains(Object obj)

参数

Obj - 在序列列表中需要检查的值

返回值

如果此 Range 包含指定元素,则返回 true

示例

以下是对该方法使用的一个示例 -

class Example { 
   static void main(String[] args) { 
      // Example of an Integer using def 
      def rint = 1..10; 
		
      println(rint.contains(2)); 
      println(rint.contains(11)); 
   } 
}

当运行上述程序时,我们得到如下结果 -

true 
false
groovy_ranges.htm
广告