No title
Swift学习记录 – Swift中throws处理方式
第一种方法: “踹”
try 程序员手动捕捉异常
1 | // try方式 |
第二种方法 : “疑问踹”
try?方式 系统帮助我们处理异常 ,如果该方法出现了异常, 则方法返回nil ,如果没有异常,则返回对应的对象
1 | //安全校验 |
第三种方法 我称之为“强踹”
try!方式 直接告诉系统,该方法没有异常,如果该方法出现了错误,直接崩溃
1 | let htmlCont = try! String.init(contentsOfFile: htmlPate!, encoding: String.Encoding.utf8) |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.