欢迎来到swift的世界
Swift是水果公司推出的新型面向对象语言,用于iOS和OS X平台开发。
它是一种现代的(modern)、功能强大的、易于使用的语言。
下面的代码段创建了一个字典并遍历、打印所有元素:
let people = ["Anna": 67, "Beto": 8, "Jack": 33, "Sam": 25]
for (name, age) in people {
println("\(name) is \(age) years old.")
} 安全性:
Swift的类型推导(type inference)机制是类型安全的。Swift限制了对指针的直接访问,并且自动管理内存,是它能够更容易的搭建安全、稳定的软件。
func configureLabels(labels: UILabel[]) {
let labelTextColor = UIColor.greenColor()
for label in labels {
// label inferred to be UILabel
label.textColor = labelTextColor
}
} 现代化:
Swift涵盖了(optionals)、泛型(generics)、元组(Tuple)等其他现代语言的特性。它的启发和改进使objective-c和swift的代码使用起来更自然tural to read and write.
ps:元组,通过in关键字快速访问的集合
let cities = ["London", "San Francisco", "Tokyo", "Barcelona", "Sydney"]
let sortedCities = sort(cities) { $0 < $1 }
if let indexOfLondon = find(sortedCities, "London") {
println("London is city number \(indexOfLondon + 1) in the list")
}
功能强大:
Swift拥有强大的模式匹配功能,能够快速编写简单的、表现力强的代码。Format strings 让字符串的操作更自然。在Swift中使用像Foundation、UIKit之类的框架也很直接。
let size = (20, 40)
switch size {
case let (width, height) where width == height:
println("square with sides \(width)")
case (1..10, 1..10):
println("small rectangle")
case let (width, height):
println("rectangle with width \(width) and height \(height)")
}