swift學習筆記之幾個關鍵字

2021-07-05 22:14:36 字數 534 閱讀 4014

1.break關鍵字

作用:退出最近的迴圈體

例子:

2.continue關鍵字

例子:

3.falltrough關鍵字

作用:由於swift中switch語句每條case中自帶乙個隱含的break關鍵字,使得執行完匹配的case語句後不再執行下面的case。

為了解決這個問題,swift中特意引入的這個關鍵字。使程式執行switch語句中的某個case後,再調到下乙個case中。

例子:4.as關鍵字

作用:使swift中的物件能轉換為objective-c中的物件,這樣就可以呼叫objective-c物件的方法了

例子:

swift之mutating關鍵字

原文 在swift中,包含三種型別 type structure,enumeration,class 其中structure和enumeration是值型別 value type class是引用型別 reference type 但是與objective c不同的是,structure和enume...

swift之mutating關鍵字

在swift 中,包含三種型別 type structure,enumeration,class 其中structure和enumeration是值型別 value type class是引用型別 reference type 但是與objective c不同的是,structure和enumera...

swift之mutating關鍵字

在swift 中,包含三種型別 type structure,enumeration,class 其中structure和enumeration是值型別 value type class是引用型別 reference type 但是與objective c不同的是,structure和enumera...