//: Playground - noun: a place where people can play import UIKit // 拼接 var str = "Hello, playground" str + "hello, swift" // 这样的拼接, str还是没有改变 str str += "hello, swift" str // 比较 var c1 = "abc" var c2 = "abd&qu…
//: Playground - noun: a place where people can play import UIKit var dict = [1:"one", 2:"two", 3:"three", 4:"four"] dict.count dict.isEmpty dict[1] dict[66] "课程名称: " + dict[1]! // 添加和修改 dict[5] = "fi…
//: Playground - noun: a place where people can play import UIKit var str = "Hello, playground" var array = ["A", "B", "C", "D", "E", "F"] let arrayCount = array.count array.isEmpty arr…
Swift 的类型是在 C 和 Objective-C 的基础上提出的,Int是整型:Double和Float是浮点型:Bool是布尔型:String是字符串.Swift 还有两个有用的集合类型,Array和Dictionary,请参考集合类型. 就像 C 语言一样,Swift 使用变量来进行存储并通过变量名来关联值.在 Swift 中,值不可变的变量有着广泛的应用,它们就是常量,而且比 C 语言的常量更强大.在 Swift 中,如果你要处理的值不需要改变,那使用常量可以让你的代码更加安全并且更…