Java反射中此构造函数的参数化类型是什么?
java.lang.reflect.Constructor[] constructors = Stock.class.getDeclaredConstructors();
我已尝试Constructor<Stock>[]
,Constructor<Stock.class>[]
和Constructor<Class>[]
。
答案 0 :(得分:1)
getDeclaredConstructors()
的返回类型是<?>
,它只是任何类型。
Constructor<?>[] constructors = Stock.class.getDeclaredConstructors();
更多信息:
What does the question mark in Java generics' type parameter mean?