import Foundation


//Swift 语言中的ArraysSetsDictionaries中存储的数据值类型必须明确。这意味着我们不能把不正确的数 据类型插入其中。


/*集合的可变性***********************************************/




/*数组***********************************************/

// 创建数组

var someInts = [Int]()

print("someInts is of type [Int] with \(someInts.count) items.")

// 打印 "someInts is of type [Int] with 0 items."

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 被推断为 [Double],等价于 [2.5,2.5,2.5]

var sixDoubles = threeDoubles + anotherThreeDoubles

// sixDoubles 被推断为 [Double],2.5]


//我们可以使用字面量来进行数组构造,这是一种用一个或者多个数值构造数组的简单方法。

var shoppingList:[String] = ["Eggs","Milk"]

// shoppingList 已经被构造并且拥有两个初始项。

//也可以这样写 var shoppingList = ["Eggs","Milk"]


print("The shopping list contains \(shoppingList.count) items.")

// 输出 "The shopping list contains 2 items."(这个数组有2个项)


//使用布尔值属性 isEmpty 作为检查 count 属性的值是否为 0 的捷径:

if shoppingList.isEmpty {

print("The shopping list is empty.")

} else {

print("The shopping list is not empty.")

}

// 打印 "The shopping list is not empty."(shoppinglist 不是空的)


//也可以使用 append(_:) 方法在数组后面添加新的数据项:

shoppingList.append("Flour")

// shoppingList 现在有3个数据项


//除此之外,使用加法赋值运算符( += )也可以直接在数组后面添加一个或多个拥有相同类型的数据项:

shoppingList += ["Baking Powder"]

// shoppingList 现在有四项了

shoppingList += ["Chocolate Spread","Cheese","Butter"]

// shoppingList 现在有七项了

print(shoppingList)


var firstItem = shoppingList[0] // 第一项是 "Eggs"

shoppingList[0] = "Six eggs"

// 其中的第一项现在是 "Six eggs" 而不是 "Eggs"


shoppingList[4...6] = ["Bananas","Apples"]

// shoppingList 现在有6

print(shoppingList)


shoppingList.insert("Maple Syrup",atIndex: 0)

print(shoppingList)


let mapleSyrup = shoppingList.removeAtIndex(0)

print(mapleSyrup)

// 索引值为0的数据项被移除

// shoppingList 现在只有6,而且不包括 Maple Syrup

// mapleSyrup 常量的值等于被移除数据项的值 "Maple Syrup"


let apples = shoppingList.removeLast()

print(apples)

// 数组的最后一项被移除了

// shoppingList 现在只有5,不包括 cheese

// apples 常量的值现在等于 "Apples" 字符串


//我们可以使用 for-in 循环来遍历所有数组中的数据项:

for item in shoppingList {

print("item is \(item)")

}


//如果我们同时需要每个数据项的值和索引值,可以使用 enumerate() 方法来进行数组遍历。 enumerate() 返回 一个由每一个数据项索引值和数据值组成的元组。我们可以把这个元组分解成临时常量或者变量来进行遍历:

for (index,value) in shoppingList.enumerate() {

print("Item \(String(index + 1)): \(value)")

}




/*集合***********************************************/

//你可以通过构造器语法创建一个特定类型的空集合:

var letters = Set<Character>()

print("letters is of type Set<Character> with \(letters.count) items.")

// 打印 "letters is of type Set<Character> with 0 items."


letters.insert("a")

// letters 现在含有1 Character 类型的值

letters = []

// letters 现在是一个空的 Set,但是它依然是 Set<Character> 类型


var favoriteGenres: Set<String> = ["Rock","Classical","Hip hop"]

// favoriteGenres 被构造成含有三个初始值的集合


//一个 Set 类型不能从数组字面量中被单独推断出来,因此 Set 类型必须显式声明。然而,由于 Swift 的类型推断 功能,如果你想使用一个数组字面量构造一个 Set 并且该数组字面量中的所有元素类型相同,那么你无须写出 S et 的具体类型。

//favoriteGenres的构造形式可以采用简化的方式代替

//var favoriteGenres: Set = ["Rock","Classical","Hip hop"]


print("I have \(favoriteGenres.count) favorite music genres.")

// 打印 "I have 3 favorite music genres."


if favoriteGenres.isEmpty {

print("As far as music goes,I'm not picky.")

} else {

print("I have particular music preferences.")

}

// 打印 "I have particular music preferences."


//你可以通过调用 Set insert(_:) 方法来添加一个新元素:

favoriteGenres.insert("Jazz")


//你可以通过调用 Set remove(_:) 方法去删除一个元素,如果该值是该 Set 的一个元素则删除该元素并且返回 被删除的元素值,否则如果该 Set 不包含该值,则返回 nil 。另外,Set 中的所有元素可以通过它的 removeAl l() 方法删除。

if let removedGenre = favoriteGenres.remove("Rock") {

print("\(removedGenre)? I'm over it.")

} else {

print("I never much cared for that.")

}

// 打印 "Rock? I'm over it."


//使用 contains(_:) 方法去检查 Set 中是否包含一个特定的值:

if favoriteGenres.contains("Funk") {

print("I get up on the good foot.")

} else {

print("It's too funky in here.")

}

// 打印 "It's too funky in here."


//你可以在一个 for-in 循环中遍历一个 Set 中的所有值。

for genre in favoriteGenres {

print("\(genre)")

}


//Swift Set 类型没有确定的顺序,为了按照特定顺序来遍历一个 Set 中的值可以使用 sort() 方法,它将根据提供的序列返回一个有序集合.

for genre in favoriteGenres.sort() {

print("=====\(genre)")

}


//基本集合操作

//使用 intersect(_:) 方法根据两个集合中都包含的值创建的一个新的集合。

//使用 exclusiveOr(_:) 方法根据在一个集合中但不在两个集合中的值创建一个新的集合。

//使用 union(_:) 方法根据两个集合的值创建一个新的集合。

//使用 subtract(_:) 方法根据不在该集合中的值创建一个新的集合。


let oddDigits: Set = [1,3,5,7,9]

let evendigits: Set = [0,2,4,6,8]

let singleDigitPrimeNumbers: Set = [2,7]


print(oddDigits.union(evendigits).sort())

// [0,1,2,3,4,5,6,7,8,9]

print(oddDigits.intersect(evendigits).sort())

// []

print(oddDigits.subtract(singleDigitPrimeNumbers).sort())

// [1,9]

print(oddDigits.exclusiveOr(singleDigitPrimeNumbers).sort())

// [1,9]



//使用是否相等运算符( == )来判断两个集合是否包含全部相同的值。

//使用 isSubsetof(_:) 方法来判断一个集合中的值是否也被包含在另外一个集合中。

//使用 isSupersetof(_:) 方法来判断一个集合中包含另一个集合中所有的值

//使用 isstrictSubsetof(_:) 或者 isstrictSupersetof(_:) 方法来判断一个集合是否是另外一个集合的子集合或者父集合并且两个集合并不相等。

//使用 isdisjointWith(_:) 方法来判断两个集合是否不含有相同的值。


let houseAnimals: Set = ["?","?"]

let farmAnimals: Set = ["?","?","?"]

let cityAnimals: Set = ["?","?"]

houseAnimals.isSubsetof(farmAnimals)

// true

farmAnimals.isSupersetof(houseAnimals)

// true

farmAnimals.isdisjointWith(cityAnimals)

// true




/*字典***********************************************/




/*字典类型快捷语法***********************************************/

//Swift 的字典使用 Dictionary<Key,Value> 定义,其中 Key 是字典中键的数据类型,Value 是字典中对应于这 些键所存储值的数据类型。


//我们可以像数组一样使用构造语法创建一个拥有确定类型的空字典:

var namesOfIntegers = [Int: String]()

// namesOfIntegers 是一个空的 [Int: String] 字典

namesOfIntegers[16] = "sixteen"

// namesOfIntegers 现在包含一个键值对

namesOfIntegers = [:]

// namesOfIntegers 又成为了一个 [Int: String] 类型的空字典




/*用字典字面量创建字典***********************************************/

//var airports: [String: String] = ["YYZ": "Toronto Pearson","dub": "dublin"]


//字典也可以用这种简短方式定义:

var airports = ["YYZ": "Toronto Pearson","dub": "dublin"]


print("The dictionary of airports contains \(airports.count) items.")

// 打印 "The dictionary of airports contains 2 items."(这个字典有两个数据项)


if airports.isEmpty {

print("The airports dictionary is empty.")

} else {

print("The airports dictionary is not empty.")

}

// 打印 "The airports dictionary is not empty."


airports["LHR"] = "London"

// airports 字典现在有三个数据项

airports["LHR"] = "London Heathrow"

// "LHR"对应的值 被改为 "London Heathrow

print(airports)


if let oldValue = airports.updateValue("dublin Airport",forKey: "dub") {

print("The old value for dub was \(oldValue).")

}

// 输出 "The old value for dub was dublin."


if let airportName = airports["dub"] {

print("The name of the airport is \(airportName).")

} else {

print("That airport is not in the airports dictionary.")

}

// 打印 "The name of the airport is dublin Airport."


airports["APL"] = "Apple Internation"

// "Apple Internation" 不是真的 APL 机场,删除它

print(airports)

airports["APL"] = nil

// APL 现在被移除了

print(airports)


if let removedValue = airports.removeValueForKey("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."


//我们可以使用 for-in 循环来遍历某个字典中的键值对。每一个字典中的数据项都以 (key,value) 元组形式返 ,并且我们可以使用临时常量或者变量来分解这些元组:

for (airportCode,airportName) in airports {

print("\(airportCode): \(airportName)")

}


//通过访问 keys 或者 values 属性,我们也可以遍历字典的键或者值:

for airportCode in airports.keys {

print("Airport code: \(airportCode)")

}

for airportName in airports.values {

print("Airport name: \(airportName)")

}


//如果我们只是需要使用某个字典的键集合或者值集合来作为某个接受 Array 实例的 API 的参数,可以直接使用 keys 或者 values 属性构造一个新数组:

let airportCodes = [String](airports.keys.sort())

print(airportCodes)

// airportCodes ["YYZ","LHR"]

let airportNames = [String](airports.values)

print(airportNames)

// airportNames ["Toronto Pearson","London Heathrow"]



//Swift 的字典类型是无序集合类型。为了以特定的顺序遍历字典的键或值,可以对字典的 keys values 属性使 sort() 方法。

《swift2.0 官方教程中文版》 第2章-04集合类型的更多相关文章

  1. html5使用canvas实现弹幕功能示例

    这篇文章主要介绍了html5使用canvas实现弹幕功能示例的相关资料,需要的朋友可以参考下

  2. HTML5 WebSocket实现点对点聊天的示例代码

    这篇文章主要介绍了HTML5 WebSocket实现点对点聊天的示例代码的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

  3. 前端实现弹幕效果的方法总结(包含css3和canvas的实现方式)

    这篇文章主要介绍了前端实现弹幕效果的方法总结(包含css3和canvas的实现方式)的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

  4. H5 canvas实现贪吃蛇小游戏

    本篇文章主要介绍了H5 canvas实现贪吃蛇小游戏,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

  5. ios – 在Swift的UIView中找到UILabel

    我正在尝试在我的UIViewControllers的超级视图中找到我的UILabels.这是我的代码:这是在Objective-C中推荐的方式,但是在Swift中我只得到UIViews和CALayer.我肯定在提供给这个方法的视图中有UILabel.我错过了什么?我的UIViewController中的调用:解决方法使用函数式编程概念可以更轻松地实现这一目标.

  6. ios – parse.com用于键,预期字符串的无效类型,但是得到了数组

    我尝试将我的数据保存到parse.com.我已经预先在parse.com上创建了一个名为’SomeClass’的类.它有一个名为’mySpecialColumn’的列,其数据类型为String.这是我尝试使用以下代码保存数据的代码:如果我运行这个我得到:错误:密钥mySpecialColumn的无效类型,预期字符串,但得到数组这就是我在parse.com上的核心外观:有谁知道我为什么会收到这个错误?

  7. ios – 在Swift中将输入字段字符串转换为Int

    所以我非常擅长制作APP广告Swift,我试图在文本字段中做一些非常简单的输入,取值,然后将它们用作Int进行某些计算.但是’vardistance’有些东西不正确它是导致错误的最后一行代码.它说致命错误:无法解开Optional.None解决方法在你的例子中,距离是一个Int?否则称为可选的Int..toInt()返回Int?因为从String到Int的转换可能失败.请参阅以下示例:

  8. 如何在iOS中检测文本(字符串)语言?

    例如,给定以下字符串:我想检测每个声明的字符串中使用的语言.让我们假设已实现函数的签名是:如果没有检测到语言,则返回可选字符串.因此,适当的结果将是:有一个简单的方法来实现它吗?

  9. ios – 上下文类型’NSFastEnumeration’不能与数组文字一起使用

    斯威夫特3,你会这样做吗?解决方法正如您所发现的,您不能使用as-casting将数组文字的类型指定为NSFastEnumeration.您需要找到一个符合NSFastEnumeration的正确类,在您的情况下它是NSArray.通常写这样的东西:

  10. xamarin – 崩溃在AccountStore.Create().保存(e.Account,“);

    在Xamarin.Forms示例TodoAwsAuth中https://developer.xamarin.com/guides/xamarin-forms/web-services/authentication/oauth/成功登录后,在aOnAuthenticationCompleted事件中,应用程序在尝试保存到Xamarin.Auth时崩溃错误说不能对钥匙串说期待着寻求帮助.解决方法看看你

随机推荐

  1. Swift UITextField,UITextView,UISegmentedControl,UISwitch

    下面我们通过一个demo来简单的实现下这些控件的功能.首先,我们拖将这几个控件拖到storyboard,并关联上相应的属性和动作.如图:关联上属性和动作后,看看实现的代码:

  2. swift UISlider,UIStepper

    我们用两个label来显示slider和stepper的值.再用张图片来显示改变stepper值的效果.首先,这三个控件需要全局变量声明如下然后,我们对所有的控件做个简单的布局:最后,当slider的值改变时,我们用一个label来显示值的变化,同样,用另一个label来显示stepper值的变化,并改变图片的大小:实现效果如下:

  3. preferredFontForTextStyle字体设置之更改

    即:

  4. Swift没有异常处理,遇到功能性错误怎么办?

    本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容,请发送邮件至dio@foxmail.com举报,一经查实,本站将立刻删除。

  5. 字典实战和UIKit初探

    ios中数组和字典的应用Applicationschedule类别子项类别名称优先级数据包contactsentertainment接触UIKit学习用Swift调用CocoaTouchimportUIKitletcolors=[]varbackView=UIView(frame:CGRectMake(0.0,0.0,320.0,CGFloat(colors.count*50)))backView

  6. swift语言IOS8开发战记21 Core Data2

    上一话中我们简单地介绍了一些coredata的基本知识,这一话我们通过编程来实现coredata的使用。还记得我们在coredata中定义的那个Model么,上面这段代码会加载这个Model。定义完方法之后,我们对coredata的准备都已经完成了。最后强调一点,coredata并不是数据库,它只是一个框架,协助我们进行数据库操作,它并不关心我们把数据存到哪里。

  7. swift语言IOS8开发战记22 Core Data3

    上一话我们定义了与coredata有关的变量和方法,做足了准备工作,这一话我们来试试能不能成功。首先打开上一话中生成的Info类,在其中引用头文件的地方添加一个@objc,不然后面会报错,我也不知道为什么。

  8. swift实战小程序1天气预报

    在有一定swift基础的情况下,让我们来做一些小程序练练手,今天来试试做一个简单地天气预报。然后在btnpressed方法中依旧增加loadWeather方法.在loadWeather方法中加上信息的显示语句:运行一下看看效果,如图:虽然显示出来了,但是我们的text是可编辑状态的,在storyboard中勾选Editable,再次运行:大功告成,而且现在每次单击按钮,就会重新请求天气情况,大家也来试试吧。

  9. 【iOS学习01】swift ? and !  的学习

    如果不初始化就会报错。

  10. swift语言IOS8开发战记23 Core Data4

    接着我们需要把我们的Rest类变成一个被coredata管理的类,点开Rest类,作如下修改:关键字@NSManaged的作用是与实体中对应的属性通信,BinaryData对应的类型是NSData,CoreData没有布尔属性,只能用0和1来区分。进行如下操作,输入类名:建立好之后因为我们之前写的代码有些地方并不适用于coredata,所以编译器会报错,现在来一一解决。

返回
顶部