Android Studio 3.4
Kotlin 1.3.10

我具有以下方法,该方法调用findPreferences以返回存储在共享首选项中的正确值。但是,由于我使用的是reified,因此findPreferences给我一个错误:不能将T类型用作reified参数。

无论如何,我可以使它工作吗?
fun <T: Any> getValue(key: String, defaultValue: T?): T {
    return findPreferences(key, defaultValue)
}

这是将根据键返回值的方法
@Suppress("unchecked_cast")
inline fun <reified  T: Any> findPreferences(key: String, defaultValue: T?): T {
    with(sharedPreferences) {
        val result: Any = when(defaultValue) {
            is Boolean -> getBoolean(key, default)
            is Int -> getInt(key, defaultValue)
            is Long -> getLong(key, defaultValue)
            is Float -> getFloat(key, defaultValue)
            is String -> getString(key, defaultValue)
            else -> {
                 throw UnsupportedOperationException("Cannot find preference casting error")
            }
        }
        return result as T
    }
}

最佳答案

删除reified或将getValue更改为inline fun <reified T: Any> getValue...

使用reified,我们pass a type to this function(https://kotlinlang.org/docs/reference/inline-functions.html#reified-type-parameters)。 reified要求在编译时知道类型,并且getValue中显然没有足够的类型信息。

关于android - 不能使用T类型作为参数化参数,而是使用class,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54273316/

10-12 03:39