作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一段代码需要执行2条需要尝试的语句。嵌套尝试是否更好,并且每个尝试都有自己的做{} catch {}
do {
try thingOne()
do {
try thingTwo()
} catch let error as NSError {
//handle this specific error
}
} catch let error as NSError {
//handle the other specific error here
}
do {
try thingOne()
try thingTwo()
} catch let error as NSError {
//do something with this error
}
catch
是否可以工作?
最佳答案
我认为第二种方法更好
假设我有这两个功能
func thingOne() throws{
print("Thing 1")
throw CustomError.Type1
}
func thingTwo() throws{
print("Thing 2")
throw CustomError.Type2
}
enum CustomError:ErrorType{
case Type1
case Type2
}
do {
try thingOne()
try thingTwo()
} catch CustomError.Type1 {
print("Error1")
} catch CustomError.Type2{
print("Error2")
} catch {
print("Not known\(error) ")
}
Thing 1
Error1
thingOne()
没有引发错误,它将记录
Thing 1
Thing 2
Error2
关于nested - 如何在Swift 2.0中处理连续多次尝试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34147474/
我是一名优秀的程序员,十分优秀!