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框架的主要内容,如果未能解决你的问题,请参考以下文章

带有平移、旋转和捏合手势的 UIKit Dynamics

*** -[Scrapboom.iPhone.NewsFeedTableView _endCellAnimationsWithContext:] 中的断言失败,/SourceCache/UIKit/U

[JM_06]JMeter之集合点、关联-操作解析

熊猫数据框到嵌套 JSON

断言失败 - [UIPickerTableView _createPreparedCellForGlobalRow:withIndexPath:],/ SourceCache / UIKit_Sim

JAVA集合06_流式编程GroupBy和求最值示例