真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

一、數(shù)組定義:

創(chuàng)新互聯(lián)是一家專業(yè)提供洪湖企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站建設(shè)、網(wǎng)站制作、H5網(wǎng)站設(shè)計(jì)、小程序制作等業(yè)務(wù)。10年已為洪湖眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設(shè)計(jì)公司優(yōu)惠進(jìn)行中。

var arr = Array()

或者:

var arr = [String]()
let animals = [“Giraffe”, “Cow”, “Doggie”, “Bird”]
						
animals.append(“Ostrich”) // 編譯出錯(cuò),數(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) 在指定位置插入一個(gè)元素,結(jié)果: [a,d,b,c]

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

二、字典定義:

let dic = Dictionary()

或者:

let dic = [String:Int]()

賦值:

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

文章標(biāo)題:斯坦福Swift基礎(chǔ)二(數(shù)組和字典)
轉(zhuǎn)載注明:http://weahome.cn/article/jesjis.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部