宣告一個MutableList 資料型態為整數的集合變數 var mutableList: MutableList<Int> = mutableListOf() //新增資料 mutableList.add(666) mutableList.add(777) ...
確定! 回上一頁