这是我在Room.kt中的代码
@Query("SELECT * FROM databaseaugmentedskudetails WHERE sku = :sku")
fun getById(sku: String): DatabaseAugmentedSkuDetails
val result = getById(sku)
var canPurchase = if (result == null) true else result.canPurchase. // lint warns result == null is always false but in reality it can be null returned by dao
以下行已翻译为Java
boolean canPurchase = result == null ? true : result.getCanPurchase();
一切正常,直到lint将我的kotlin代码更改为
var canPurchase = result?.canPurchase ?: true // lint warns safe call is unnecessary for non-null type
被翻译成如下Java代码
boolean canPurchase = result != null ? result.getCanPurchase() : null;
然后我会不时在运行时遇到以下崩溃
java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.Boolean.booleanValue()' on a null object reference
我认为皮棉应该足够聪明,不会破坏我的代码。
我的问题是
为什么result?.canPurchase ?: true
被翻译成result != null ? result.getCanPurchase() : null
?应该返回true
而不是null
吗?
答案 0 :(得分:1)
为了使Kotlin知道该函数最终可以返回可空类型,函数声明必须使返回类型为空。
@Query("SELECT * FROM databaseaugmentedskudetails WHERE sku = :sku")
fun getById(sku: String): DatabaseAugmentedSkuDetails? // <- ? here