Swift之類型別名

來源:互聯網
上載者:User

標籤:

類型別名是一個為已存在類型定義的一個可選擇的名字。你可以關鍵字typealias定義一個類型的別名。

當你想通過在一個在上下文中看起來更合適可具有表達性的名字來引用一個已存在的類型時,這時別名就非常有用了,比如當使用來自外部指明大小的資料時:

     typealias AudioSample = UInt8

一旦你定義了一個類型別名時,你就可以在任何地方使用類型別名來代替原來使用的類型名字:

       var maxAmplitudeFound = AudioSample.min  // maxAmplitudeFound = 0

在這裡,AudioSample被定義為一個UInt的類型別名,調用AudioSample.min實際上是調用UInt8.min,返回一個值為0的數字來初始化maxAmplitudeFound變數。

Swift之類型別名

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.