Swift 类型别名

类型别名

  • 在 Swift 语言中使用 typealias 关键字定义类型别名。

    typealias ShortInteger = Int8
    
原文地址:https://www.cnblogs.com/QianChia/p/8628707.html