美文网首页
Swift中的字典

Swift中的字典

作者: ziyouzhe4 | 来源:发表于2016-12-12 12:16 被阅读17次
    
    import UIKit
    
    /************************** 字典定义 *****************************/
    // Swift中字典的类型Dictionary
    // 不可变字典使用let修饰
    // 可变字典使用var修饰
    // 注意:字典在创建时使用[]
    let dict : Dictionary = ["name" : "JJCoder", "age" : 18] as [String : Any]
    // dict = ["name" : "lmj", "age" : 20]
    let dict1 : Dictionary<String, AnyObject> = ["name" : "jack" as AnyObject, "age" : 20 as AnyObject]
    
    // 开发中常见写法
    let dict2 : [String : AnyObject] = ["name" : "jack" as AnyObject, "age" : 22 as AnyObject]
    
    // 类型推导
    let dict3 = ["name" : "jjcoder", "age" : 26] as [String : Any]
    
    // 可变字典
    var dict4 = [String : AnyObject]()
    
    
    /************************** 对可变字典的操作 *****************************/
    // 1.在字典中添加元素
    dict4["name"] = "lmj" as AnyObject?
    dict4
    dict4["age"] = 26 as AnyObject?
    dict4
    dict4["height"] = 1.74 as AnyObject?
    dict4
    
    // 2.从字典中移除元素
    let age = dict4.removeValue(forKey: "age")
    
    
    // 3.修改字典中的值
    // 注意:通过一个键来修改字典中的值,如果存在这个键则修改.如果不存在就会添加新的键值对
    dict4["weight"] = 62.0 as AnyObject?
    dict4
    dict4["height"] = 1.74 as AnyObject?
    dict4
    
    // 4.获取值
    // let height = dict4["height"]! as! Double
    let height = dict4["height"]!
    print(height)
    
    
    /************************** 对可变字典的遍历 *****************************/
    // 1.遍历字典中所有的键
    for key in dict4.keys {
        print(key)
    }
    
    // 2.遍历字典中所有的值
    for value in dict4.values {
        print(value)
    }
    
    // 3.遍历字典中的键值对
    for (key, value) in dict4 {
        print(key)
        print(value)
    }
    
    
    /************************** 字典的合并 *****************************/
    var d1 = ["name" : "jjcoder", "age" : 20] as [String : Any]
    var d2 = ["height" : 174, "phoneNum" : "+86 15210100335", "name" : "majianjie"] as [String : Any]
    
    // 两个字典,即时类型一致也不可以彼此相加
    // var d3 = d1 + d2
    
    // 合并过程中,如果没有对应的键,添加对应的键值对
    // 如果有队要你管的键,则修改原有的值
    for (key, value) in d1 {
        d2[key] = value
    }
    
    

    相关文章

      网友评论

          本文标题:Swift中的字典

          本文链接:https://www.haomeiwen.com/subject/wkemmttx.html