Swift中异常处理 —— try

let string = "{"name":"hello"}"
let data = string.data(using: .utf8)

//方法一:推荐使用 try?,如果函数或方法抛出错误,程序不会发崩溃,而返回一个nil,如果没有抛出错误则返回可选值。
let json = try? JSONSerialization.jsonObject(with: data!, options: [])

//方法二:不建议使用 try!,如果解析失败,会崩溃
let json = try! JSONSerialization.jsonObject(with: data!, options: [])

//方法三:do catch 手动捕获异常
do {
let json = try JSONSerialization.jsonObject(with:data!, options: [])
} catch {
//输出错误信息
print(error)
}

你可能感兴趣的:(Swift中异常处理 —— try)