我还在学习泛型并有一个问题.说你有这个泛型类:
public class Test<T> { public static void main (String[] args) { Test t1 = new Test(); Test<String> t2 = new Test<String>(); Test t3 = new Test<String>(); } }
所有的语句都是编译的,但我不知道是什么使它们有所不同.任何人都可以简要解释这三个陈述.
解决方法
Test t1 = new Test();
在这里,您使用的是Raw类型.也就是说,没有传递你的泛型类的Type参数.
编译器应该在这里给你一个警告
Test is a raw type. References to generic type Test should be
parameterized
Test<String> t2 = new Test<String>();
在这里你正在使用泛型.将String作为类型参数传递给通用类.
Test t3 = new Test<String>();
编译器也应该在这里给你一个警告:
- Test is a raw type. References to generic type Test should be parameterized
还有另一个类在java 7版本中工作正常.
Test<String> t4 = new Test<>();
如果由于类型推断使用java 7,那么这里没有编译器警告