基础类型
虽然Swift是一个为开发iOS和OS X app设计的全新编程语言,但是Swift的很多特性还是跟C和Objective-C相似。Swift也提供了与C和Objective-C类似的基础数据类型,包括整形Int、浮点数Double和Float、布尔类型Bool以及字符串类型String。Swift还提供了两种更强大的基本集合数据类型,Array和Dictionary。
常量和变量的声明
常量和变量在使用前都需要声明,在Swift中使用let关键词来声明一个常量,var关键词声明一个变量。如下面例子
let number = 10
var string = "Hello"
数组
空数组的初始化
let array : [Int] = [] //直接赋空值
let array = [Int]() //使用初始化
let array = Array<Int>()
非空数组的初始化
let 数组 : [Int] = [1, 2, 3, 4]
let 数组 : [Int](count: 2, repeatedValue: 6)
var 数组 = Array<Int>(arrayLiteral: 2, 4)
常用方法
array.isEmpty //判断数组是否为空
array.append(1) //数组中添加元素
array += [22] //数组中添加元素
array.insert(9, atIndex: 2) //数组中插入元素
array[2] //数组中取值
array[2] = 9 //修改值
array[0...2] = [11, 22, 33] //修改值
array.removeAll(keepCapacity: true) //删除
字典
字典初始化
let dic = Dictionary<String, AnyObject>()
var dictionary = ["name" : "Tom", "sex" : "男"]
常用方法
dictionary["job"] = "write" //增加或修改键值
dictionary.updateValue(8, forkey: "number") //更新键值
dictionary.removeValueForkey("number") //删除
index = dictionary.indexForKey("name")
dictionary.removeAtIndex(index!) ////通过键值下标移除
元组