当前位置:  开发笔记 > IOS > 正文

如何避免在Swift2中嵌套do/catch语句

如何解决《如何避免在Swift2中嵌套do/catch语句》经验,为你挑选了1个好方法。

我一直想这样做:

do {
    let result = try getAThing()
} catch {
   //error
}

do {
    let anotherResult = try getAnotherThing(result) //Error - result out of scope
} catch {
    //error
}

但似乎只能做到这一点:

do {
     let result = try getAThing()
     do {
          let anotherResult = try getAnotherThing(result) 
     } catch {
          //error
     }
} catch {
     //error
}

有没有办法result在不必嵌套do/catch块的情况下保持不可变的范围?有没有办法防止错误类似于我们如何使用guard语句作为if/else块的反转?



1> Rob..:

在Swift 1.2中,您可以将常量的声明与常量的赋值分开.(请参阅Swift 1.2博客条目中的"常量现在更强大和一致" .)因此,将其与Swift 2错误处理相结合,您可以:

let result: ThingType

do {
    result = try getAThing()
} catch {
    // error handling, e.g. return or throw
}

do {
    let anotherResult = try getAnotherThing(result)
} catch {
    // different error handling
}

另外,有时候我们并不真正需要两个不同的do- catch语句和一个catch将处理在一块了潜在的引发的错误:

do {
    let result = try getAThing()
    let anotherResult = try getAnotherThing(result)
} catch {
    // common error handling here
}

这取决于您需要什么类型的处理.

推荐阅读
携手相约幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有