003_swift_dict 字典

//
//  main.swift
//  003_字典
//
//  Created by liuan on 2020/3/22.
//  Copyright © 2020 liuan. All rights reserved.
//

import Foundation

//字典是无序的 key value形式存在
//一 创建
var dic1:Dictionary<String,Any>=[:];
var dic2:[String :Any]=[:];
var dic3=["name":"小米","age":10] as [String:Any];
//二 字典的操作
// 字典的元素个数
let count=dic3.count;
print(count)
//字典判断是否是空。
let ret = dic1.isEmpty
let ret1=dic3.isEmpty;
print(ret,ret1)

//取值
let vlaue=dic1["name"];
let keys=dic1.keys
let vlaues=dic1.values

//4 更新元素
dic3.updateValue(11, forKey: "age");
print(dic3)
dic3["age"]=12;
print(dic3)
//5 增加元素
dic3["country"]="china"
print(dic3)
// 6 删除元素
dic3.removeValue(forKey: "country")
print(dic3)
// 7 字典的遍历
for ele in dic3{
    print(ele,ele.key,ele.value)
}

效果展示

2
true false
["name": "小米", "age": 11]
["name": "小米", "age": 12]
["country": "china", "name": "小米", "age": 12]
["name": "小米", "age": 12]
(key: "name", value: "小米") name 小米
(key: "age", value: 12) age 12
Program ended with exit code: 0
发布了2022 篇原创文章 · 获赞 536 · 访问量 273万+

猜你喜欢

转载自blog.csdn.net/mp624183768/article/details/105028897
今日推荐