Groovy - 删除()


删除此列表中指定位置的元素。

句法

Object remove(int index)

参数

Index – 需要删除值的索引。

返回值

删除的值。

例子

以下是此方法的使用示例 -

class Example {
   static void main(String[] args) {
      def lst = [11, 12, 13, 14];

      println(lst.remove(2));
      println(lst);
   }
}

当我们运行上面的程序时,我们将得到以下结果 -

13 
[11, 12, 14]
groovy_lists.htm