标签:
Swift提供了两种集合类型,分别是数组和字典(就是键值对)。
数组使用有序列表存储相同类型的多重数据。简单说就是可以存储重复的值。
我们可以使用字面语句来进行数组构造,这是一种用一个或者多个数值构造数组的简单方法。字面语句是一系列由逗号分割并由方括号包含的数值。 [value 1, value 2, value 3]。
var shoppingList: String[] = ["Eggs", "Milk"]
shoppingList变量被声明为“字符串值类型的数组“,记作String[]。 因为这个数组被规定只有String一种数据结构,所以只有String类型可以在其中被存取。 在这里,shoppinglist数组由两个String值("Eggs" 和"Milk")构造,并且由字面语句定义。
由 于Swift 的类型推断机制,当我们用字面语句构造只拥有相同类型值数组的时候,我们不必把数组的类型定义清楚。 shoppinglist的构造也可以这样写:
var shoppingList = ["Eggs", "Milk"]
println("The shopping list contains \(shoppingList.count) items.")
使用isEmpty来作为检查count属性的值是否为0
if shoppingList.isEmpty { println("The shopping list is empty.") } else { println("The shopping list is not empty.") }
也可以使用append方法在数组后面添加新的数据项:
shoppingList.append("Flour")
除此之外,使用加法赋值运算符(+=)也可以直接在数组后面添加数据项:
shoppingList += "Baking Powder"
我们也可以使用加法赋值运算符(+=)直接添加拥有相同类型数据的数组。
shoppingList += ["Chocolate Spread", "Cheese", "Butter"]
可以直接使用下标语法来获取数组中的数据项,把我们需要的数据项的索引值放在直接放在数组名称的方括号中:
var firstItem = shoppingList[0]
注意:第一项在数组中的索引值是0。 Swift 中的数组索引总是从零开始。
可以用下标来改变某个已有索引值对应的数据值:
shoppingList[0] = "Six eggs"
利用区间运算符来改变一系列的数据值
shoppingList[4...6] = ["Bananas", "Apples"]
在上面这个例子中,将数组中索引为4、5、6的值替换为"Bananas", "Apples",需要注意的是,由于替换的值只有两个,所以索引为6的值将会从数组中移除。
注意: 我们不能使用下标语法在数组尾部添加新项。如果我们试着用这种方法对索引越界的数据进行检索或者设置新值的操作,我们会引发一个运行期错误。我们可以使用索引值和数组的count属性进行比较来在使用某个索引之前先检验是否有效。除了当count等于0时(说明这是个空数组),最大索引值一直是count - 1,因为数组都是从零开始。
调用数组的insert(atIndex:)方法来在某个具体索引值之前添加数据项:
shoppingList.insert("Maple Syrup", atIndex: 0)
这次insert函数调用把值为"Maple Syrup"的新数据项插入shopping列表的最开始位置,并且使用0作为索引值。
使用removeAtIndex方法来移除数组中的某一项。这个方法把数组在特定索引值中存储的数据项移除并且返回这个被移除的数据项(我们不需要的时候就可以无视它):
let mapleSyrup = shoppingList.removeAtIndex(0) // 索引值为0的数据项被移除 // shoppingList 现在只有6项,而且不包括Maple Syrup // mapleSyrup常量的值等于被移除数据项的值 "Maple Syrup"
数据项被移除后数组中的空出项会被自动填补,所以现在索引值为0的数据项的值再次等于"Six eggs":
firstItem = shoppingList[0] // firstItem 现在等于 "Six eggs"
let apples = shoppingList.removeLast() // 数组的最后一项被移除了 // shoppingList现在只有5项,不包括cheese // apples 常量的值现在等于"Apples" 字符串
for item in shoppingList { println(item) } // Six eggs // Milk // Flour // Baking Powder // Bananas
for (index, value) in enumerate(shoppingList) { println("Item \(index + 1): \(value)")
}
// Item 1: Six eggs
// Item 2: Milk
// Item 3: Flour
// Item 4: Baking Powder
var someInts = Int[]() println("someInts is of type Int[] with \(someInts。count) items。") // 打印 "someInts is of type Int[] with 0 items。"(someInts是0数据项的Int[]数组)
someInts.append(3) // someInts 现在包含一个INT值 someInts = [] // someInts 现在是空数组,但是仍然是Int[]类型的。
var threeDoubles = Double[](count: 3, repeatedValue:0.0) // threeDoubles 是一种 Double[]数组, 等于 [0.0, 0.0, 0.0]
var anotherThreeDoubles = Array(count: 3, repeatedValue: 2.5) // anotherThreeDoubles is inferred as Double[], and equals [2.5, 2.5, 2.5]
var sixDoubles = threeDoubles + anotherThreeDoubles // sixDoubles 被推断为 Double[], 等于 [0.0, 0.0, 0.0, 2.5, 2.5, 2.5]
Swift 的字典使用Dictionary<keytype, valuetype">定义
字典是一种存储相同类型多重数据的存储器。每个值(value)都关联独特的键(key),键作为字典中的这个值数据的标识符。和数组中的数据项不同,字典中的数据项并没有具体顺序。我们在需要通过标识符(键)访问数据的时候使用字典,这种方法很大程度上和我们在现实世界中使用字典查字义的方法一样。
KeyType的唯一限制就是可哈希的,这样可以保证它是独一无二的,所有的 Swift 基本类型(例如String,Int, Double和Bool)都是默认可哈希的,并且所有这些类型都可以在字典中当做键使用。未关联值的枚举成员(参见枚举)也是默认可哈希的。
[key 1: value 1, key 2: value 2, key 3: value 3]
var airports: Dictionary<string, string> = ["TYO": "Tokyo", "DUB": "Dublin"]
var airports = ["TYO": "Tokyo", "DUB": "Dublin"]
println("The dictionary of airports contains \(airports.count) items.") // 打印 "The dictionary of airports contains 2 items."(这个字典有两个数据项)
airports["LHR"] = "London" // airports 字典现在有三个数据项
airports["LHR"] = "London Heathrow" // "LHR"对应的值 被改为 "London Heathrow
if let oldValue = airports.updateValue("Dublin Internation", forKey: "DUB") { println("The old value for DUB was \(oldValue).") } // 打印出 "The old value for DUB was Dublin."(dub原值是dublin)
if let airportName = airports["DUB"] { println("The name of the airport is \(airportName).") } else { println("That airport is not in the airports dictionary.") } // 打印 "The name of the airport is Dublin INTernation."(机场的名字是都柏林国际)
airports["APL"] = "Apple Internation" // "Apple Internation"不是真的 APL机场, 删除它 airports["APL"] = nil // APL现在被移除了
if let removedValue = airports.removeValueForKey("DUB") { println("The removed airport‘s name is \(removedValue).") } else { println("The airports dictionary does not contain a value for DUB.") } // 打印 "The removed airport‘s name is Dublin International."(被移除的机场名字是都柏林国际)
for (airportCode, airportName) in airports { prINTln("\(airportCode): \(airportName)") } // TYO: Tokyo // LHR: London Heathrow
也可以通过访问他的keys或者values属性(都是可遍历集合)检索一个字典的键或者值:
for airportCode in airports.keys { prINTln("Airport code: \(airportCode)") } // Airport code: TYO // Airport code: LHR for airportName in airports.values { prINTln("Airport name: \(airportName)") } // Airport name: Tokyo // Airport name: London Heathrow
let airportCodes = Array(airports.keys) // airportCodes is ["TYO", "LHR"] let airportNames = Array(airports.values) // airportNames is ["Tokyo", "London Heathrow"]
var namesOfIntegers = Dictionary<int, string>() // namesOfIntegers 是一个空的 Dictionary<int, string>
namesOfIntegers[16] = "sixteen" // namesOfIntegers 现在包含一个键值对 namesOfIntegers = [:] // namesOfIntegers 又成为了一个 Int, String类型的空字典
来源:http://www.cocoachina.com/ios/20140611/8768.html
2015-03-19
17:35:25
标签:
原文地址:http://www.cnblogs.com/huangzx/p/4351102.html