检查范围是否包含特定值。
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