美文网首页
swift 入门 《注意事项 一》

swift 入门 《注意事项 一》

作者: 爱薄荷的虾米 | 来源:发表于2016-03-10 12:18 被阅读0次

    一:使用一个不确定为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