和大多数语言不同,Kotlin区分可变集合和不可变集合(list,set,map等) 因为 ... arrayListOf(1,2,3) val muList: MutableList<Int> = mutableListOf(1, ...
確定! 回上一頁