《The Swift Programming Language》的筆記-第28頁

來源:互聯網
上載者:User

標籤:swift開發   chinaswift.me   ios8   swift教程   中遊學院   

·        第28頁

本頁裡的主要內容是:

1 介紹swift語言裡的各類數制,或者說某一整數的不同表示形式。

    1)十進位,無首碼

    2)二進位,以0b開頭,後邊是若干個0和1的序列

    3)八進位,以0o開頭,後邊是若干0~7的序列

    4)16進位,以0x開頭,後是0~9、a~f序列

以常量31為例,二進位表示31為:0b11111

以常量31為例,八進位表示31為:0o37

以常量31為例,16進位表示31為:0x1f

2 科學計數表示數

   1)以10為底的科學計數

   2)以2為底的科學計數

   120 = 1.2 * 10 ^ 2  =>  1.2e2   (e代表10為底)

   120 = 15 * 2 ^ 3     =>   0xfp3   (p代表2為底)


相關文章

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.