swift基础知识(7)- try、try?、try!的使用方式
try 第一种使用方式 try do catch
let data: Data = Data()
do {
let responseJSON = try JSONSerialization.jsonObject(with: data, options: []) as! [[String: Any]]
print(responseJSON)
} catch {
print("something is wrong here. Try connecting to the wifi.")
}
try 第二种使用方式 try?
let data: Data = Data()
let responseJSON = try? JSONSerialization.jsonObject(with: data, options: []) as? [[String: Any]]
if responseJSON != nil {
print("Yeah, We have just unwrapped responseJSON!")
} else {
print(responseJSON ?? "")
}
try 第三种使用方式 guard try?
let data: Data = Data()
func getResponseJSON() {
guard let responseJSON = try? (JSONSerialization.jsonObject(with: data, options: []) as! [[String: Any]]) else {
return
}
print(responseJSON)
}
try 第四种使用方式 try!
let data: Data = Data()
let responseJSON = try! JSONSerialization.jsonObject(with: data, options: []) as! [[String: Any]]
print(responseJSON)
总结
try 需要与 do...catch配合使用,这种方式可以使用更详细的错误处理方法
try? 忽略我们的错误,如果碰巧发生,会将它们设置为nil
try! 打开您的代码,并保证我们的函数永远不会遇到错误。在我们的函数确实抛出错误的情况下,我们的应用只会崩溃,这种方式用的时候一定要小心
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。