当前位置: 代码迷 >> J2SE >> 如何去除警告:ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
  详细解决方案

如何去除警告:ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized

热度:556   发布时间:2016-04-24 13:22:30.0
怎么去除警告:ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
List list = new ArrayList();
↑会出现警告,不太明白为何出警告。

该怎么去除警告?


------解决方案--------------------
建议楼主去看一些泛型的资料,JDK1.5里有的
建议写成类似这样的:
List<String> list = new ArrayList<String>();
前提是你的list里面都是String类型的
------解决方案--------------------
1. 用generic
2. 在方法或类上加@SuppressWarnings("unchecked")
  相关解决方案