如何在Kotlin中复制列表?我正在使用val selectedSeries = mutableListOf<String>() selectedSeries.addAll(series) 有没有更简单的方法? 最佳答案 这很好。val selectedSeries = series.toMutableList()