gpt4 book ai didi

kotlin-extension - Kotlin 获取没有实例的泛型类的类型

转载 作者:行者123 更新时间:2023-12-04 21:32:37 31 4
gpt4 key购买 nike

嘿想要去获取 的类型电话 ,但我无法从实例中获取它,我必须从类参数中获取它,该怎么做?

abstract class ViewModelFragment<T : ViewModel>{
protected lateinit var mViewModel: T

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
mViewModel = ViewModelProviders
.of(scope)
.get(getGenericTClass())
// .get(mViewModel.javaClass) // not working either

}

inline fun<reified R> getGenericTClass() = R::class.java

}

现在编译器提示

Cannot use 'T' as refined class type. Use Class instead.



我尝试使用以下解决方案: https://stackoverflow.com/a/34463352/2163045但不适合我

最佳答案

我有同样的问题,下面的代码帮助了我:

val persistentClass = (javaClass.genericSuperclass as ParameterizedType).actualTypeArguments[0] as Class<T>
mViewModel = ViewModelProvider(this, viewModelsFactory).get(persistentClass)

关于kotlin-extension - Kotlin 获取没有实例的泛型类的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47418161/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com