小编典典

如何在 kotlin 中克隆或复制列表

all

如何在 Kotlin 中复制列表?

我在用着

val selectedSeries = mutableListOf<String>()
selectedSeries.addAll(series)

有没有更简单的方法?


阅读 67

收藏
2022-07-18

共1个答案

小编典典

这工作正常。

val selectedSeries = series.toMutableList()
2022-07-18