美文网首页Kotlin学习笔记Android学习android学习
Kotlin中问号(?)和两个叹号(!!)的含义

Kotlin中问号(?)和两个叹号(!!)的含义

作者: 青峰星宇 | 来源:发表于2018-06-28 10:22 被阅读291次

    在刚开始用Kotlin写代码的时候经常因为!!和?不加报警告错误。
    具体提示如下代码所示:

      protected var loadingDialog: Dialog? = null
      //java隐藏actionBar
       if (null != getActionBar()) {
            getActionBar().hide();
        }
       //Kotlin隐藏actionBar
       actionBar?.hide()  
       //Kotlin调用弹出框显示方法
       loadingDialog?.show()
       假如你不加!!或者?,会出现如下告警提示
        Smart cast to 'loadingDialog' is impossible, because 'loadingDialog' is a mutable property that could have been changed by this time
    

    ?:表示当前是否对象可以为空

    !!: 通知编译器不做非空校验。如果运行时发现变量为空,就扔出异常

    这两个都是Kotlin为我们提供的检验空指针的方法

    相关文章

      网友评论

        本文标题:Kotlin中问号(?)和两个叹号(!!)的含义

        本文链接:https://www.haomeiwen.com/subject/cftgyftx.html