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

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

初識Swift集合之數(shù)組集合

數(shù)組集合

鄧州ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!

基礎操作:

數(shù)組集合定義:由一串有序的相同類型的元素構成的集合

數(shù)組的基本聲明:

    1、 var strudentList : Array ;  //聲明一個strudentList 數(shù)組,數(shù)組元素的類型是Int型

    2、var strudentList : [Int]  ;            //一種偷懶的strudent List數(shù)組聲明,數(shù)組元素類型是Int 型

數(shù)組的初始化

    1、var strudentList : Array= [10,10,10]    //聲明初始化studentList 型

    2、var strudentList = [10,101]           //根據(jù)Swift語言的類型推斷能力來聲明一個studentList的數(shù)組,數(shù)組元素類型是 Int 型。

    3、var strudentList = Array()  //聲明一個空值的strudentList數(shù)組,數(shù)組元素的類型是Int型

    4、var strudentList = [String]()     // 聲明一個控制的strudentList 數(shù)組,數(shù)組元素類型是String型

在聲明數(shù)組的時候我們可以使用兩個關鍵字 var和let ,在使用var 的時候,程序后期可以改變數(shù)組的值;在使用let 的時候,數(shù)組已經(jīng)聲明之后不能發(fā)生改變

數(shù)組元素操作:增、刪、改、插入元素

增加元素

        例子:var strudentList : Array = ["張三", "Jack"] ;

    1、在數(shù)組末尾添加一個元素 

        strudentList.append("十元") ;

    2、在數(shù)組末尾添加多個元素

        strudentList += ["Mark" , "R"] ;

插入元素

      strudentList.insert("飛魚" , atIndex : num)  //num是要插入的數(shù)組位置,這里請注意數(shù)組的位置時從零開始計算的,比如[10,10] 那么他的下表技術為 0,1

刪除元素

    let names=strudentList.removeAtIndex(num) ; //num是要刪除數(shù)組元素的下表,使用這種刪除方法,方法可以返回被刪除元素的內(nèi)容,如果不需要這個元素我們可以直接strudentList.removeAtIndex(num)

數(shù)組的遍歷

    數(shù)組的遍歷啊有三種方法可以使用

    1、for in  輸出數(shù)組元素

    for item in studentList {
        println(item);
    }

    2、輸出數(shù)組下標和元素

    for (id, name) in enumerate(studentList){
        if(id != studentList.count-1){
            print("Item \(id): \(name) ,") ;
        }else{
            println("Item \(id): \(name)") ;
        }
    }

    3、使用這種方法輸出

for (var i:Int = 0 ; i < strudentList.count - 1 ; i++){
    if(i != strudentList.count-2){
        print("Item \(i): \(strudentList[i]) ,") ;
    }else{
        println("Item \(i): \(strudentList[i])") ;
    }
}

名稱欄目:初識Swift集合之數(shù)組集合
本文來源:http://weahome.cn/article/pdoshj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部