假如你今天需要宣告一個空的Array,則有幾種可行的作法: val emptyArray = arrayOf<Int>() // 型別是Array<Int> val emptyArray = emptyArray<Int>() // 型 ...
確定! 回上一頁