我有一个简单的静态方法:
public static <U> U findStuff(String id) {
// how can i get the class of type U here ?
Class classObject = ....;
return classObject.newInstance();
}
public static void main(String[] args) {
MyEntity entity = MyClass.<MyEntity>findStuff("abc");
}
我想知道如何从U中获取类对象?
目前,我必须绕过课堂,因为我还不知道方法..所以,现在我正在使用这样的东西:
public static <U> U findStuff(Class<U> classObject, String id) {
return classObject.newInstance();
}
public static void main(String[] args) {
MyEntity entity = MyClass.findStuff(MyEntity.class, "abc");
}
最佳答案
是否
Class<?> classObject = object.getClass();
为你做够了吗?目前尚不清楚您需要
em.find
做什么。编辑:好的,通过编辑,您遇到了类型擦除的问题。基本上,您需要像已经做的那样传递您感兴趣的课程。有关更多信息,请参见Java generics FAQ。这是Java泛型实现方式的不幸推论:(
关于java - 泛型:从静态方法获取parameterizedtype类名?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6015360/