将 java.lang.reflect.Type 转换为 Class<T> clazz
如何转换为 ?java.lang.reflect.Type
Class<T> clazz
如果我有一个方法作为下一个,它的参数为:Class<T>
public void oneMethod(Class<T> clazz) {
//Impl
}
然后另一个方法,它有一个参数,它调用,为此我需要转换为:java.lang.reflect.Type
oneMethod(Class<T> clazz)
java.lang.reflect.Type type
Class<T>
public void someMehtod(java.lang.reflect.Type type) {
// I want to pass type arg to other method converted in Class<T>
otherMethod(¿How to convert java.lang.reflect.Type to Class<T>?);
}
可能吗?