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

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

初識Swift集合之字典集合-創(chuàng)新互聯(lián)

字典集合

創(chuàng)新互聯(lián)是一家專注于網(wǎng)站設(shè)計制作、成都網(wǎng)站制作與策劃設(shè)計,烏拉特前網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十多年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:烏拉特前等地區(qū)。烏拉特前做網(wǎng)站價格咨詢:18980820575

    字典表示一種非常復(fù)雜的集合, 允許按照某個鍵來訪問元素

字典集合的聲明與初始化:

    var strudentDictionary1 : Dictionary = [102 : " Jack" , 105 : "Mark" , 107 : "Jay"] ; //這里聲明里一個strudentDictionary1 的字典集合,他的鍵是 Int 類型,他的值為String類型

  var strudentDictionary2 = [102 : " Jack" , 105 : "Mark" , 107 : "Jay"] ;

    let strudentDictionary3 = [102 : " Jack" , 105 : "Mark" , 107 : "Jay"] ; //let 聲明的集合值不可變

    var strdentDictionary4 = Dirctionary (); //聲明一個空的strudentDictionary 集合

字典元素的操作

    增,刪,改

更改元素

    strudentDictionary[102] = "十元" ;

刪除元素

    let dismisssStrudent = strudentDictionary.removeValueForKey(102) ; //刪除指定鍵的元素,使用這個方法刪除元素,它會返回被刪除集合的值。如果不要返回值strudentDictionary.removeValueForKey(102)

  strudentDictionary[105]=nil  //這樣可以直接刪除元素

 這里需要注意一個特殊的方法updateValue(值,forKey : 鍵),如果找不到相對應(yīng)的鍵,它會增加值;如果找到這個值,它會替換這個值。這個函數(shù)也會返回被替換或者增加 的值。

  let replaceStrudent = strudentDictionary.updateValue("十元" , forKey : 10) ;

    也可以這么寫:strudentDictionary.updateValue("十元" , forKey : 10) ;

字典集合的遍歷,他分為鍵遍歷、值遍歷、鍵和值變臉

var studentDictionary = [102 : "張三" , 105 : "張三" , 109 : "王五"]
var i = 0 ;
println("------遍歷值------") ;
for studentId in studentDictionary.keys {
    i++ ;
    if(i <= 2){
        print("學(xué)號:\(studentId), ")
    }else {
        println("學(xué)號:\(studentId)")
    }
}


println("------遍歷value------") ;
for studentValue in studentDictionary.values {
    i-- ;
    if(i > 0){
        print("姓名:\(studentValue), ")
    }else {
        println("姓名:\(studentValue)")
    }
}

println("------遍歷Id and value------") ;
for (studentId, studentValue) in studentDictionary {
    i++ ;
    if (i <= 2) {
        print("\(studentId):\(studentValue), ")
    }else {
        println("\(studentId):\(studentValue), ")
    }
}

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


本文標(biāo)題:初識Swift集合之字典集合-創(chuàng)新互聯(lián)
分享地址:http://weahome.cn/article/jpsej.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部