Groovy - 列表 minus()



使用未在集合中指定的项组成原始列表的新列表。

语法

List minus(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]
groovy_lists.htm
广告