swift語言-布爾類型

來源:互聯網
上載者:User

標籤:布爾類型

1. 布爾類型1 如何聲明布爾類型量

布爾類型用來表示真假的,通常用在條件和迴圈結構中。使用關鍵字Bool,其值為true或false。swift中的布爾值和Java語言一樣,不與0和非0相關。所以代碼中if後面的布林運算式不使用指派陳述式。
如下代碼:

#import Foundationvar intlValue = 100//if boolValue = 100{if boolValue == 100{   println("true")}else{  println("false")} 

if後面的布林運算式可以不寫括弧,swift中一般省略這個括弧。
如下代碼:

#import Foundationvar boolValue = falseif boolValue == true {  println("true")}else{  println("false")} 

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.