📌  相关文章
📜  弹出最后一个元素数组 swift 代码示例

📅  最后修改于: 2022-03-11 15:00:59.439000             🧑  作者: Mango

代码示例1
// Initialize the Array
var a = [1,2,3]

// Remove last item
let lastItem = a.removeLast()

print(lastItem)
print(a)