Groovy - pop()


从此列表中删除最后一项。

句法

Object pop() 

参数

没有任何

返回值

从列表中弹出的值。

例子

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

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

      println(lst.pop()); 
      println(lst); 
   } 
}

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

14 
[11, 12, 13]
groovy_lists.htm