10

我使用 Oracle JDK 7,当我构建项目时,我收到了这条消息:

missing type arguments for generic class Class<T> where T is a type-variable: 
T extends Object declared in class Class

这是课程:

public class Among {
private static final Class<?>[] EMPTY_PARAMS = new Class[0]; //warning line

任何想法如何解决它。它在很多地方使用,我有很多警告。

4

1 回答 1

16
private static final Class<?>[] EMPTY_PARAMS = new Class<?>[0];

注意<?>数组的实例化。

于 2013-04-04T20:51:06.533 回答