空配列の定義
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
// String配列 var strArray = [String]() strArray.append("a") strArray.append("b") strArray.append("c") // Int配列 var intArray = [Int]() intArray.append(1) intArray.append(2) intArray.append(3) print(strArray[2]) // c print(intArray[1]) // 2 |
こんな感じで空配列は定義できる。
もちろん、初期化でぶちこむこともできるけど、それはまた次回。