无法使用Kotlin中的特定类型参数编译扩展函数

我有一个kotlin库项目,并使用Spek进行测试。 在我的测试中,我尝试使用以下功能:

 inline fun JsonElement?.cast<reified T>(gson: Gson): T { return if (this != null) gson.fromJson<T>(this, javaClass<T>()) else null } 

当我尝试编译上面的代码时,出现编译错误:

 Error: Gradle: java.lang.IllegalStateException: Error type encountered: org.jetbrains.kotlin.types.ErrorUtils$UninferredParameterTypeConstructor@144bac7f (ErrorTypeImpl). One of the possible reasons may be that this type is not directly accessible from this module. To workaround this error, try adding an explicit dependency on the module or library which contains this type to the classpath 

但是,这段代码编译正确:

 inline fun JsonElement?.cast<reified T>(gson: Gson): T? { return if (this != null) gson.fromJson<T>(this, javaClass<T>()) else null } 

你注意到,返回类型从T变成了T? 。 即使它编译,我收到一个提示消息:

 'T' has nullable upper bound. This means that a value of type may be null. Using 'T?' is likely to mislead the reader. 

这是一个正确的行为?

你得到的异常是编译器中的一个错误。

你所得到的警告是正确的,为了消除它,写出<reified T: Any> ,这样一个普通的T不能再空。