在 Kotlin 中,你可以使用 remove()
方法或 removeAt()
方法來快速刪除列表中的元素。
remove()
方法來刪除指定元素:val myList = mutableListOf("apple", "banana", "orange")
myList.remove("banana")
println(myList) // 輸出:[apple, orange]
removeAt()
方法來刪除指定索引位置的元素:val myList = mutableListOf("apple", "banana", "orange")
myList.removeAt(1)
println(myList) // 輸出:[apple, orange]
注意:remove()
方法會刪除列表中第一個匹配的元素,如果列表中不存在該元素則不會刪除任何元素。而 removeAt()
方法會刪除指定索引位置的元素。