我使用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
任何想法如何解决它。它在很多地方使用,我有很多警告。
答案 0 :(得分:10)
private static final Class<?>[] EMPTY_PARAMS = new Class<?>[0];
注意数组实例化时的<?>
。