从此列表中删除最后一项。
Object pop()
没有
列表中的弹出值。
以下是此方法的使用示例 -
class Example { static void main(String[] args) { def lst = [11, 12, 13, 14]; println(lst.pop()); println(lst); } }
当我们运行上述程序时,我们将得到以下结果 -
14 [11, 12, 13]