Swift 3 类型转换

Swift 语言类型转换可以判断一个实例的类型,也可以用于检测某个类型的实例是否属于其父类或者子类的实例,还可以用来检查一个类是否实现了某个协议

Swift 中类型转换使用 isas 操作符实现

  • is 用于检测值的类型
  • as 用于转换类型

定义一个类层次

下面的代码定义了三个类:Subjects、Chemistry、Maths

Chemistry 和 Maths 继承自 Subjects

  1. import Cocoa
  2. class Subjects
  3. {
  4. var physics: String
  5. init(physics: String)
  6. {
  7. self.physics = physics
  8. }
  9. }
  10. class Chemistry: Subjects
  11. {
  12. var equations: String
  13. init(physics: String, equations: String)
  14. {
  15. self.equations = equations
  16. super.init(physics: physics)
  17. }
  18. }
  19. class Maths: Subjects
  20. {
  21. var formulae: String
  22. init(physics: String, formulae: String)
  23. {
  24. self.formulae = formulae
  25. super.init(physics: physics)
  26. }
  27. }
  28. let sa = [
  29. Chemistry(physics: "固体物理", equations: "赫兹"),
  30. Maths(physics: "流体动力学", formulae: "千兆赫")
  31. ]
  32. let samplechem = Chemistry(physics: "固体物理", equations: "赫兹")
  33. print("实例物理学是: \(samplechem.physics)")
  34. print("实例方程式: \(samplechem.equations)")
  35. let samplemaths = Maths(physics: "流体动力学", formulae: "千兆赫")
  36. print("实例物理学是: \(samplemaths.physics)")
  37. print("实例公式是: \(samplemaths.formulae)")

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 实例物理学是: 固体物理
  3. 实例方程式: 赫兹
  4. 实例物理学是: 流体动力学
  5. 实例公式是: 千兆赫

检查类型

类型转换可以用于检测实例是否属于特定的实例类型

可以将它用在类和子类的层次结构上,检查特定类实例的类型并且转换这个类实例的类型成为这个层次结构中的其他类型

类型检查使用 is 关键字

is 操作符

操作符 is 来检查一个实例是否属于特定子类型

若实例属于那个子类型,类型检查操作符返回 true,否则返回 false

  1. import Cocoa
  2. class Subjects
  3. {
  4. var physics: String
  5. init(physics: String)
  6. {
  7. self.physics = physics
  8. }
  9. }
  10. class Chemistry: Subjects
  11. {
  12. var equations: String
  13. init(physics: String, equations: String)
  14. {
  15. self.equations = equations
  16. super.init(physics: physics)
  17. }
  18. }
  19. class Maths: Subjects
  20. {
  21. var formulae: String
  22. init(physics: String, formulae: String) {
  23. self.formulae = formulae
  24. super.init(physics: physics)
  25. }
  26. }
  27. let sa = [
  28. Chemistry(physics: "固体物理", equations: "赫兹"),
  29. Maths(physics: "流体动力学", formulae: "千兆赫"),
  30. Chemistry(physics: "热物理学", equations: "分贝"),
  31. Maths(physics: "天体物理学", formulae: "兆赫"),
  32. Maths(physics: "微分方程", formulae: "余弦级数")
  33. ]
  34. let samplechem = Chemistry(physics: "固体物理", equations: "赫兹")
  35. print("实例物理学是: \(samplechem.physics)")
  36. print("实例方程式: \(samplechem.equations)")
  37. let samplemaths = Maths(physics: "流体动力学", formulae: "千兆赫")
  38. print("实例物理学是: \(samplemaths.physics)")
  39. print("实例公式是: \(samplemaths.formulae)")
  40. var chemCount = 0
  41. var mathsCount = 0
  42. for item in sa
  43. {
  44. // 如果是一个 Chemistry 类型的实例,返回 true,相反返回 false。
  45. if item is Chemistry
  46. {
  47. chemCount += 1
  48. }
  49. else if item is Maths
  50. {
  51. mathsCount += 1
  52. }
  53. }
  54. print("化学科目包含 \(chemCount) 个主题,数学包含 \(mathsCount) 个主题")

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 实例物理学是: 固体物理
  3. 实例方程式: 赫兹
  4. 实例物理学是: 流体动力学
  5. 实例公式是: 千兆赫
  6. 化学科目包含 2 个主题,数学包含 3 个主题

向下转型

向下转型,用类型转换操作符(as? 或 as!)

  • 当不确定向下转型是否可以成功时,用类型转换的条件形式(as?)

条件形式的类型转换总是返回一个可选值(optional value),并且若下转是不可能的,可选值将是 nil

  • 当可以确定向下转型一定会成功时,才使用强制形式(as!)

试图向下转型为一个不正确的类型时,强制形式的类型转换会触发一个运行时错误

  1. import Cocoa
  2. class Subjects
  3. {
  4. var physics: String
  5. init(physics: String)
  6. {
  7. self.physics = physics
  8. }
  9. }
  10. class Chemistry: Subjects
  11. {
  12. var equations: String
  13. init(physics: String, equations: String)
  14. {
  15. self.equations = equations
  16. super.init(physics: physics)
  17. }
  18. }
  19. class Maths: Subjects
  20. {
  21. var formulae: String
  22. init(physics: String, formulae: String)
  23. {
  24. self.formulae = formulae
  25. super.init(physics: physics)
  26. }
  27. }
  28. let sa = [
  29. Chemistry(physics: "固体物理", equations: "赫兹"),
  30. Maths(physics: "流体动力学", formulae: "千兆赫"),
  31. Chemistry(physics: "热物理学", equations: "分贝"),
  32. Maths(physics: "天体物理学", formulae: "兆赫"),
  33. Maths(physics: "微分方程", formulae: "余弦级数")
  34. ]
  35. let samplechem = Chemistry(physics: "固体物理", equations: "赫兹")
  36. print("实例物理学是: \(samplechem.physics)")
  37. print("实例方程式: \(samplechem.equations)")
  38. let samplemaths = Maths(physics: "流体动力学", formulae: "千兆赫")
  39. print("实例物理学是: \(samplemaths.physics)")
  40. print("实例公式是: \(samplemaths.formulae)")
  41. var chemCount = 0
  42. var mathsCount = 0
  43. for item in sa
  44. {
  45. // 类型转换的条件形式
  46. if let show = item as? Chemistry
  47. {
  48. print("化学主题是: '\(show.physics)', \(show.equations)")
  49. // 强制形式
  50. } else if let example = item as? Maths
  51. {
  52. print("数学主题是: '\(example.physics)', \(example.formulae)")
  53. }
  54. }

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 实例物理学是: 固体物理
  3. 实例方程式: 赫兹
  4. 实例物理学是: 流体动力学
  5. 实例公式是: 千兆赫
  6. 化学主题是: '固体物理', 赫兹
  7. 数学主题是: '流体动力学', 千兆赫
  8. 化学主题是: '热物理学', 分贝
  9. 数学主题是: '天体物理学', 兆赫
  10. 数学主题是: '微分方程', 余弦级数

Any 和 AnyObject 的类型转换

Swift 为不确定类型提供了两种特殊类型别名:

1.AnyObject 可以代表任何 class 类型的实例 2.Any 可以表示任何类型,包括方法类型(function types)

只有当明确的需要它的行为和功能时才使用 AnyAnyObject

在我们的代码中,使用期望的明确的类型总是更好的

范例

Any 的使用

  1. import Cocoa
  2. class Subjects
  3. {
  4. var physics: String
  5. init(physics: String)
  6. {
  7. self.physics = physics
  8. }
  9. }
  10. class Chemistry: Subjects
  11. {
  12. var equations: String
  13. init(physics: String, equations: String)
  14. {
  15. self.equations = equations
  16. super.init(physics: physics)
  17. }
  18. }
  19. class Maths: Subjects
  20. {
  21. var formulae: String
  22. init(physics: String, formulae: String)
  23. {
  24. self.formulae = formulae
  25. super.init(physics: physics)
  26. }
  27. }
  28. let sa = [
  29. Chemistry(physics: "固体物理", equations: "赫兹"),
  30. Maths(physics: "流体动力学", formulae: "千兆赫"),
  31. Chemistry(physics: "热物理学", equations: "分贝"),
  32. Maths(physics: "天体物理学", formulae: "兆赫"),
  33. Maths(physics: "微分方程", formulae: "余弦级数")
  34. ]
  35. let samplechem = Chemistry(physics: "固体物理", equations: "赫兹")
  36. print("实例物理学是: \(samplechem.physics)")
  37. print("实例方程式: \(samplechem.equations)")
  38. let samplemaths = Maths(physics: "流体动力学", formulae: "千兆赫")
  39. print("实例物理学是: \(samplemaths.physics)")
  40. print("实例公式是: \(samplemaths.formulae)")
  41. var chemCount = 0
  42. var mathsCount = 0
  43. for item in sa {
  44. // 类型转换的条件形式
  45. if let show = item as? Chemistry
  46. {
  47. print("化学主题是: '\(show.physics)', \(show.equations)")
  48. // 强制形式
  49. } else if let example = item as? Maths
  50. {
  51. print("数学主题是: '\(example.physics)', \(example.formulae)")
  52. }
  53. }
  54. // 可以存储Any类型的数组 exampleany
  55. var exampleany = [Any]()
  56. exampleany.append(12)
  57. exampleany.append(3.14159)
  58. exampleany.append("Any 实例")
  59. exampleany.append(Chemistry(physics: "固体物理", equations: "兆赫"))
  60. for item2 in exampleany
  61. {
  62. switch item2 {
  63. case let someInt as Int:
  64. print("整型值为 \(someInt)")
  65. case let someDouble as Double where someDouble > 0:
  66. print("Pi 值为 \(someDouble)")
  67. case let someString as String:
  68. print("\(someString)")
  69. case let phy as Chemistry:
  70. print("主题 '\(phy.physics)', \(phy.equations)")
  71. default:
  72. print("None")
  73. }
  74. }

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 实例物理学是: 固体物理
  3. 实例方程式: 赫兹
  4. 实例物理学是: 流体动力学
  5. 实例公式是: 千兆赫
  6. 化学主题是: '固体物理', 赫兹
  7. 数学主题是: '流体动力学', 千兆赫
  8. 化学主题是: '热物理学', 分贝
  9. 数学主题是: '天体物理学', 兆赫
  10. 数学主题是: '微分方程', 余弦级数
  11. 整型值为 12
  12. Pi 值为 3.14159
  13. Any 实例
  14. 主题 '固体物理', 兆赫

范例 2

AnyObject 的使用

  1. import Cocoa
  2. class Subjects
  3. {
  4. var physics: String
  5. init(physics: String) {
  6. self.physics = physics
  7. }
  8. }
  9. class Chemistry: Subjects
  10. {
  11. var equations: String
  12. init(physics: String, equations: String) {
  13. self.equations = equations
  14. super.init(physics: physics)
  15. }
  16. }
  17. class Maths: Subjects
  18. {
  19. var formulae: String
  20. init(physics: String, formulae: String) {
  21. self.formulae = formulae
  22. super.init(physics: physics)
  23. }
  24. }
  25. // [AnyObject] 类型的数组
  26. let saprint: [AnyObject] = [
  27. Chemistry(physics: "固体物理", equations: "赫兹"),
  28. Maths(physics: "流体动力学", formulae: "千兆赫"),
  29. Chemistry(physics: "热物理学", equations: "分贝"),
  30. Maths(physics: "天体物理学", formulae: "兆赫"),
  31. Maths(physics: "微分方程", formulae: "余弦级数")
  32. ]
  33. let samplechem = Chemistry(physics: "固体物理", equations: "赫兹")
  34. print("实例物理学是: \(samplechem.physics)")
  35. print("实例方程式: \(samplechem.equations)")
  36. let samplemaths = Maths(physics: "流体动力学", formulae: "千兆赫")
  37. print("实例物理学是: \(samplemaths.physics)")
  38. print("实例公式是: \(samplemaths.formulae)")
  39. var chemCount = 0
  40. var mathsCount = 0
  41. for item in saprint
  42. {
  43. // 类型转换的条件形式
  44. if let show = item as? Chemistry {
  45. print("化学主题是: '\(show.physics)', \(show.equations)")
  46. // 强制形式
  47. } else if let example = item as? Maths {
  48. print("数学主题是: '\(example.physics)', \(example.formulae)")
  49. }
  50. }
  51. var exampleany = [Any]()
  52. exampleany.append(12)
  53. exampleany.append(3.14159)
  54. exampleany.append("Any 实例")
  55. exampleany.append(Chemistry(physics: "固体物理", equations: "兆赫"))
  56. for item2 in exampleany
  57. {
  58. switch item2 {
  59. case let someInt as Int:
  60. print("整型值为 \(someInt)")
  61. case let someDouble as Double where someDouble > 0:
  62. print("Pi 值为 \(someDouble)")
  63. case let someString as String:
  64. print("\(someString)")
  65. case let phy as Chemistry:
  66. print("主题 '\(phy.physics)', \(phy.equations)")
  67. default:
  68. print("None")
  69. }
  70. }

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 实例物理学是: 固体物理
  3. 实例方程式: 赫兹
  4. 实例物理学是: 流体动力学
  5. 实例公式是: 千兆赫
  6. 化学主题是: '固体物理', 赫兹
  7. 数学主题是: '流体动力学', 千兆赫
  8. 化学主题是: '热物理学', 分贝
  9. 数学主题是: '天体物理学', 兆赫
  10. 数学主题是: '微分方程', 余弦级数
  11. 整型值为 12
  12. Pi 值为 3.14159
  13. Any 实例
  14. 主题 '固体物理', 兆赫