本文介绍了更新List的最后一个元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个列表
can't figure this one out! Thanks in advance
推荐答案
您也可以使用 .init 或 .dropRight(1)删除最后一个元素,然后可以向列表中添加新项目
you can also use .init or .dropRight(1) to remove last element and then can add new item to list
val second=first.init:+newLastVal //preferableOR
val second=first.dropRight(1):+newLastVal这篇关于更新List的最后一个元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!