错误记录Kotlin 编译报错 ( Only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable ... )(代码

Posted 韩曙亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了错误记录Kotlin 编译报错 ( Only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable ... )(代码相关的知识,希望对你有一定的参考价值。





一、报错信息



Google Play 上架要求 android 的编译版本 和 目标版本都要高于 30 才可以上传 ;

在这里插入图片描述

将 Android 的编译版本 和 目标版本 都升级为 30 30 30 之后 , Kotlin 的编译检查变得更严格 , 之前不规范的代码需要逐个修改 ;

将编译版本 compileSdkVersion 和 目标版本 targetSdkVersion 由 28 修改为 30 ;

android {
    compileSdkVersion 30
    buildToolsVersion "29.0.2"

    defaultConfig {
        applicationId "com.xxx.xxx"
        minSdkVersion 19

        targetSdkVersion 30
        versionCode 1
        versionName "0.1"
	}
}

编译时报错如下 :

Only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable receiver of type Window?

在这里插入图片描述

在 编译版本 compileSdkVersion 和 目标版本 targetSdkVersion 都为 28 28 28 时 , 编译不报上述错误 ;

改了下 Android 编译版本号 , 报了 286 286 286 个错误 , 今天逐个解决上述编译错误 ;





二、解决方案



错误分析 :

非空类型 与 可空类型 变量的调用问题 ;

val window = dialog.window
val attributes = window.attributes

val window 没有声明变量类型 , 使用自动推断确定变量类型 , 而系统自动推断为 Window! 类型 , 这是可空类型 ;

在这里插入图片描述

如果调用可空类型的成员方法 或 成员变量 , 则必须使用 ? 或者 !! ;


解决方案 :

上述问题有两种解决方案 , 可以将该变量转为非空类型的变量 , 也可以在调用时加上 ? 或 !! 修饰该调用 ;

方案一 : 将该变量转为非空类型的变量

val window = dialog.window!!
val attributes = window.attributes

方案二 : 调用时加上 ? 或 !! 修饰该调用

val window = dialog.window
val attributes = window?.attributes

val window = dialog.window
val attributes = window!!.attributes

以上是关于错误记录Kotlin 编译报错 ( Only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable ... )(代码的主要内容,如果未能解决你的问题,请参考以下文章

错误记录Android Studio 编译时 Kotlin 代码编译报错 ( 升级支持库时处理 @NonNull 参数 )

错误记录Android Studio 编译时 Kotlin 代码编译报错 ( Not enough information to infer type variable T )

错误记录记录 Android 命令行执行 Java 程序中出现的错误 ( dx 打包 PC 可执行文件报错 | dalvik 命令执行 kotlin 编译的 dex 文件报错 )

错误记录Android Studio 编译报错 ( Module was compiled with an incompatible version of Kotlin. ) 2

错误记录Android Studio 编译报错 ( Module was compiled with an incompatible version of Kotlin. ) 2

错误记录Android Studio 4.2.1 编译报错 ( Kotlin 版本推荐设置 1.5.0 )