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
广告