一:使用一个不确定为nil的时候 如果属性名称紧跟!强制获取值<强制解析可选>
var temoValue:Int?;
print(temoValue!)
fatal error: unexpectedly found nil while unwrapping an Optional value
会崩溃掉
因为对一个没有值的强制解析就会EXC_BCD;
一:使用一个不确定为nil的时候 如果属性名称紧跟!强制获取值<强制解析可选>
var temoValue:Int?;
print(temoValue!)
fatal error: unexpectedly found nil while unwrapping an Optional value
会崩溃掉
因为对一个没有值的强制解析就会EXC_BCD;
本文标题:swift 入门 《注意事项 一》
本文链接:https://www.haomeiwen.com/subject/ntetlttx.html
网友评论