你好,歡迎來到IOS教程網

 Ios教程網 >> IOS使用技巧 >> IOS技巧綜合 >> Swift_錯誤處理

Swift_錯誤處理

編輯:IOS技巧綜合
[摘要]本文是對Swift_錯誤處理的講解,對學習IOS蘋果軟件開發有所幫助,與大家分享。

Swift_錯誤處理


點擊查看源碼

//錯誤處理
func test() {
    
    //錯誤枚舉 需ErrorType協議
    enum ErrorEnum: Error {
        case `default` //普通錯誤
        case other(tag: Int) //高級錯誤 可攜帶數據
    }
    
    class SomeClass {
        
        func canThrowErrors(_ str: String) throws {
            //當str不為Default時 輸出錯誤
            guard str == "Default" else {
                throw ErrorEnum.default
            }
            //當str不為Other時輸出錯誤
            guard str == "Other" else {
                throw ErrorEnum.other(tag: 5)
            }
        }
        
    }
    
    let sClass = SomeClass()
    //try! sClass.canThrowErrors("Default") // 強制調用 錯誤時程序閃退。
    do {
        try sClass.canThrowErrors("Default")
        try sClass.canThrowErrors("Other")
    } catch ErrorEnum.default {
        print("默認錯誤")
    } catch ErrorEnum.other(let tag) where tag == 5 {
        print("錯誤代碼:\(tag)")
    } catch ErrorEnum.other(let tag) {
        print("其他錯誤:\(tag)")
    } catch {
        // 在捕獲中 隱式攜帶error錯誤。
        print("未知錯誤:\(error)")
    }
    
    /*  print
     
     錯誤代碼:5
     
     */
}
  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved