- 陣列 ######let 是不可變陣列 ######var 是可變陣列
// 空陣列的建立 let arr1 = [] //陣列拼接 let arr1 = ["?","?"] let arr2 = ["⚡️","✈️"] let arr = arr1 + arr2 print(arr) //陣列的遍歷 for str in arr { print(str) } //向陣列中新增元素 arr.append("?") //修改元素 arr[0] = "?" //陣列的刪除 arr.removeAll() arr.removeFirst() arr.removeLast()
-
字典 ######let 是不可變字典 ######var 是可變字典 ######swift [key : value] 鍵值對 var dict = ["name":"小明","age":11]
//增加鍵值對 dict["title"] = "學霸" //根據key 修改value dict["name"] = "小紅" //刪除 dict.removeValueForKey("age") print(dict) //字典的遍歷 //(key,value) for (a, b) in dict { print("key = \(a)") print("value = \(b)") } 複製程式碼
看我那麼可愛n(≧▽≦)n 關注我的微薄 (樑同桌):http://weibo.com/tongrenyinsheng 個人網站(同人音聲) http://www.tongrenyinsheng.com ios 個人寫的app (同人音聲)ASMR音樂