溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

斯坦福Swift基礎二(數(shù)組和字典)

發(fā)布時間:2020-07-07 01:33:39 來源:網(wǎng)絡 閱讀:362 作者:好玩的威威 欄目:移動開發(fā)

一、數(shù)組定義:

var arr = Array<String>()

或者:

var arr = [String]()
let animals = [“Giraffe”, “Cow”, “Doggie”, “Bird”]
						
animals.append(“Ostrich”) // 編譯出錯,數(shù)組不可變(let)
let animal = animals[5] // 崩潰 (超出數(shù)組索引)
					
// 枚舉數(shù)組						
for animal in animals {						
    println(“\(animal)”)						
}					

相關(guān)函數(shù):

insert(T,atIndex:Int)  // a.insert(d,atIndex:1) 在指定位置插入一個元素,結(jié)果: [a,d,b,c]

splice(Array<T> , atIndex:Int)  // a.splice([d,e] , atIndex:1) 在指定位置插入一個數(shù)組

二、字典定義:

let dic = Dictionary<String,Int>()

或者:

let dic = [String:Int]()

賦值:

dic = ["Stanford":1,"Cal":10]
let ranking = dic["Ohio state"] // ranking類型為int? (會返回nil)
//用元組枚舉字典
for (key,value) in dic {
    println("\(key)->\(value)")
}


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI