码迷,mamicode.com
首页 > 编程语言 > 详细

Swift 字典的常用方法

时间:2017-10-17 12:48:03      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:dict   ext   text   添加   个数   val   eva   remove   move   

        var dict1 = [1:"A",2:"B",3:"C",4:"D",5:"E"];
        var test1 = ["key1":"你好","key2":"Swift","key3":"正在学习","key4":"字典","key5":"取值"]
        //根据键去取值
        print(test1["key1"]);
        //字典元素的个数
        print(test1.count);
        //添加字典元素
        dict1[6] = "F";
        test1["key"] = "test";
        //删除字典中的元素
        test1.removeValue(forKey: "key1");
        //修改字典元素
        test1["key"] = "李平";
        //遍历
        for (key,value) in test1{
            print("key\(key),value,\(value)");
        }
        for testKey in test1.keys{
            print(testKey);
        }
        for testValue in test1.values{
            print(testValue);
        }
        //把字典里的键或值转化为数组
        let textKeyArr = Array(test1.keys);
        print(textKeyArr);
        let textValueArr = Array(test1.values);
        print(textValueArr);

Swift 字典的常用方法

标签:dict   ext   text   添加   个数   val   eva   remove   move   

原文地址:http://www.cnblogs.com/laolitou-ping/p/7680346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!