创建一个由原始元素组成的新List,而不包含集合中指定的元素。
List minus(Collection collection)
Collection - 列表中减去值的集合。
新的值列表。
以下是此方法的使用示例 -
class Example {
static void main(String[] args) {
def lst = [11, 12, 13, 14];
def newlst = [];
newlst = lst.minus([12,13]);
println(newlst);
}
}
当我们运行上述程序时,我们将得到以下结果 -
[11, 14]