swift_Set_集合的使用-06_UIKit框架
Posted 爱你久久
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift_Set_集合的使用-06_UIKit框架相关的知识,希望对你有一定的参考价值。
//: Playground - noun: a place where people can play import UIKit //-----集合------// //集合和数组的区别: //(1)集合是用来存储相同类型但是无序值,数组是存储相同类型但是有序的值 //(2)集合存储的元素值需要不同,而数组可以存储相同值的元素 //1.创建 //集合必须显式声明 var stars : Set<String> = ["日", "月", "地球"] var stars2 : Set = ["日", "月", "地球"] var emptySet : Set<String> = [] var emptySet2 = Set<String>() stars.count //2.添加删除元素 可哈希化的 stars.insert("火") stars.insert("木") stars.remove("日") print(stars) //3.遍历,无序,因此遍历时不是按照添加顺序进行遍历 for planet in stars { print(planet) } //4.集合相关的运算 var planets : Set = ["金", "木", "水", "火", "f"]
以上是关于swift_Set_集合的使用-06_UIKit框架的主要内容,如果未能解决你的问题,请参考以下文章
*** -[Scrapboom.iPhone.NewsFeedTableView _endCellAnimationsWithContext:] 中的断言失败,/SourceCache/UIKit/U
断言失败 - [UIPickerTableView _createPreparedCellForGlobalRow:withIndexPath:],/ SourceCache / UIKit_Sim