字典存储时,key和value值的类型都是固定的,且都是无序的。

1.字典类型的缩写语法

在swift中,字典的完整格式如下:

Dictionary<Key, Value>

注意:字典的key类型必须符合 哈希算法。

字典的缩写格式如下:

[Key: Value]

虽然完整格式和缩写格式都可以,但是下面介绍字典时主要是以缩写格式为主。

2.创建一个空的字典

当初始化一个空的字典时,可以直接初始化其key和value值的类型,如下:

var namesOfIntegers = [Int: String]()
// namesOfIntegers is an empty [Int: String] dictionary

如下的例子,可以理解为:key为Int类型,value为string类型。

如果字典的元素可以判断出其key和value的值,那么可以创建一个格式为 [:] 的空字典:

namesOfIntegers[16] = "sixteen"
// namesOfIntegers now contains 1 key-value pair
namesOfIntegers = [:]
// namesOfIntegers is once again an empty dictionary of type [Int: String]

3. 创建一个字典并初始化字典的值

在字典中,key和value的值以“:”号区分开,每一对key和value的值用逗号隔开。

[key 1: value 1, key 2: value 2, key 3: value 3]

如下的例子:

var airports: [String: String] = ["YYZ": "Toronto Pearson", "DUB": "Dublin"]

正如数组一样,如果创建一个字典并初始化字典的key和value的值时,不需要写字典中key和value值的类型。如下:

var airports = ["YYZ": "Toronto Pearson", "DUB": "Dublin"]

从上面的例子中,swift可以推断出,该字典的key和value的类型都是string类型。

4.字典的取值与修改

你可以用字典的相关方法、属性和下标语法对字典进行取值和修改的操作。

<1>可以用只读属性count来获取字典元素的个数;

print("The airports dictionary contains \(airports.count) items.")
// Prints "The airports dictionary contains 2 items."

<2>用isEmpty的布尔值属性判断字典的count属性是否为0;

if airports.isEmpty {
print("The airports dictionary is empty.")
} else {
print("The airports dictionary is not empty.")
}
// Prints "The airports dictionary is not empty."

<3>用下标语法添加一个新的元素,往字典添加一个新的key和value值,如下:

airports["LHR"] = "London"
// the airports dictionary now contains 3 items

也可以用下标语法来修改字典的值:

airports["LHR"] = "London Heathrow"
// the value for "LHR" has been changed to "London Heathrow"

用updateValue(_:forKey:)的方法来添加或者修改字典key中的value值。如果这个key值存在,就更新这个key的value值;如果这个key值不存在,就添加。与下标不同的是,updateValue(_:forKey:)方法在执行更新后返回key对应的旧值,这使您能够检查是否发生了更新。这个旧值是可选值,如果更新的这个key值存在的话,这个可选值就是更新前key对应value的值,否者的话,返回nil。

if let oldValue = airports.updateValue("Dublin Airport", forKey: "DUB") {
print("The old value for DUB was \(oldValue).")
}
// Prints "The old value for DUB was Dublin."

可以用下标语言来获取一个字典中key对应的value值,因为key可能不存在在字典中,所以该返回值为可选值,如果key值存在,就返回对应的value值;如果不存在,就返回nil;

if let airportName = airports["DUB"] {
print("The name of the airport is \(airportName).")
} else {
print("That airport is not in the airports dictionary.")
}
// Prints "The name of the airport is Dublin Airport."

可以通过把key对应的value值设置为nil的方法来删除key-value的值;

airports["APL"] = "Apple International"
// "Apple International" is not the real airport for APL, so delete it
airports["APL"] = nil
// APL has now been removed from the dictionary

用removeValue(forKey:)的方法删除字典中的key-value值,调用这个方法时,如果key值存在的话,返回的是remove的值,如果不存在就返回nil;

if let removedValue = airports.removeValue(forKey: "DUB") {
print("The removed airport's name is \(removedValue).")
} else {
print("The airports dictionary does not contain a value for DUB.")
}
// Prints "The removed airport's name is Dublin Airport."

5.遍历字典

可以用for-in遍历字典中的key-value值,每一个元素以(key, vlue)的元组返回;您可以将tuple的成员分解为临时常量或变量,作为迭代的一部分;

for (airportCode, airportName) in airports {
print("\(airportCode): \(airportName)")
}
// YYZ: Toronto Pearson
// LHR: London Heathrow

用字典中的keys 和 values 属性来获取字典中所有的属性或者value值;

for airportCode in airports.keys {
print("Airport code: \(airportCode)")
}
// Airport code: YYZ
// Airport code: LHR for airportName in airports.values {
print("Airport name: \(airportName)")
}
// Airport name: Toronto Pearson
// Airport name: London Heathrow

如果需要将字典中所有的key和value值,以字典的形式返回的话,可以用字典中的keys和values属性来初始化一个新的数组:

let airportCodes = [String](airports.keys)
// airportCodes is ["YYZ", "LHR"] let airportNames = [String](airports.values)
// airportNames is ["Toronto Pearson", "London Heathrow"]

6. 字典是无序的,如果需要对字典排序的话,请对字典的keys 和 values 属性 用sorted() 的方法。

Swift--字典的了解的更多相关文章

  1. swift字典集合-备

    Swift字典表示一种非常复杂的集合,允许按照某个键来访问元素.字典是由两部分集合构成的,一个是键(key)集合,一个是值(value)集合.键集合是不能有重复元素的,而值集合是可以重复的,键和值是成 ...

  2. Swift 字典 Dictionary基本用法

    import UIKit /* 字典的介绍 1.字典允许按照某个键访问元素 2.字典是由两部分组成, 一个键(key)集合, 一个是值(value)集合 3.键集合是不能有重复的元素, 值集合可以有重 ...

  3. swift - 字典和集合

    p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px Menlo; color: #4dbf56 } p.p2 { margin: 0.0px 0. ...

  4. Swift字典

    字典初始化 基本语法: [key 1: value 1, key 2: value 2, key 3: value 3] var   airports:    Dictionary<String ...

  5. Swift字典类

    在Foundation框架中提供一种字典集合,它是由“键-值”对构成的集合.键集合不能重复,值集合没有特殊要求.键和值集合中的元素可以是任何对象,但是不能是nil.Foundation框架字典类也分为 ...

  6. Swift字典集合

    字典表示一种非常复杂的集合,允许按照某个键来访问元素.字典是由两部分集合构成的,一个是键(key)集合,一个是值(value)集合.键集合是不能有重复元素的,而值集合是可以重复的,键和值是成对出现的. ...

  7. Swift 字典的经常用法

    /* * *要正确使用字典,也须要一些条件 * 1.字典键值对的键和值的类型必须明白,能够直接指定.也能够类似数组直接赋值由编译器自己主动识别 * 2,字典必需要初始化 * 3,键的类型必须是能够被哈 ...

  8. Swift 字典模型互转总结

    现在很多iOS项目的开发开始转向Swift语言. 相信 Swift语言很快会成为iOS工程师 必备技能. 字典转模型, 模型转转字典在开发过程中扮演非常重要的角色. 今天就和大家分享一下使用Swift ...

  9. iOS开发零基础--Swift教程 字典

    字典的介绍 字典允许按照某个键来访问元素 字典是由两部分集合构成的,一个是键(key)集合,一个是值(value)集合 键集合是不能有重复元素的,而值集合是可以重复的,键和值是成对出现的 Swift中 ...

  10. swift Dictionary 字典

    // //  main.swift //  字典 // //  Created by zhangbiao on 14-6-15. //  Copyright (c) 2014年 理想. All rig ...

随机推荐

  1. ES6学习笔记(8)----对象的扩展

    参考书<ECMAScript 6入门>http://es6.ruanyifeng.com/ 对象的扩展 1.属性名的简洁表示法 : ES6允许在代码中直接写变量,变量名是属性名,变量值是属 ...

  2. SQL中的笛卡儿积问题和多表连接操作

    (使用scott用户) SELECT * FROM scott.dept;--4SELECT * FROM scott.emp;--14 /**笛卡尔积内连接(等值连接)外连接(非等值连接)自连接*/ ...

  3. CCF|中间数|Java

    import java.util.*; public class tyt { public static void main(String[] args) { Scanner in = new Sca ...

  4. Linux安装技巧--安装Uuntu与windows8/10共存

    1.准备安装双系统所需工具. 系统: Linux有众多的衍生版本,选择一个自己喜欢的版本下载,建议新手上ubuntu吧,中文教程较多,出了问题容易解决,等到熟悉了再用其他的也行,新手的话ubuntu也 ...

  5. sybase sql anywhere 5.0 安装后sybase central中无法打开视图等的解决办法

    无法打开的原因初步分析要用英文版的xp,后来在如下处发现问题,是sql anywhere的版本太旧了, 可能没有使用Unicode编码,设置一下如下选项可以解决问题.

  6. JAVA自带的加密算法-MD5\SHA1\BASE64

    需要导入jar包: commons-codec.jar MD5 String str = "abc"; DigestUtils.md5Hex(str); SHA1 String s ...

  7. 如何使用capedit分割数据包文件

    wireshark是一个网络数据包的分析工具,主要用来捕获网卡上的数据包并显示数据包的详细内容.在处理一些大的数据包文件时,如果直接用wireshark图形工具打开一些大文件的数据包会出现响应慢甚至没 ...

  8. SOE 第五章

    SEO第五章 本次课目标: 1.  掌握代码优化 2.  掌握内链优化 一.代码优化 1)<h>标签 代表网页的标题,总共6个级别(h1-h6) 外观上显示字体的大小的修改,其中<h ...

  9. (译)IOS block编程指南 1 介绍

    Introduction(介绍) Block objects are a C-level syntactic and runtime feature. They are similar to stan ...

  10. edquota - 编辑用户配额

    SYNOPSIS(总览) edquota [ -p proto-username ] [ -u | -g ] username... edquota [ -u | -g ] -t DESCRIPTIO ...