标签: java android reflection gson
我有一个:
TypeToken<T> type;
其中
type is List<?>;
我想要的是获取List引用的Object.class,我不需要知道Class,我只需要将它传递给类似的构造函数:
new GsonListDeserializerPrizer(clazz) clazz came from List<?> - List<clazz>
我知道理解我的问题有点复杂,但我已经尝试了很多解决方案而没有工作。