标签:
问题:The type List is not generic; it cannot be parameterized with arguments ...
原因:import java.awt.List;不支持泛型,
解决办法:修改引用import java.util.List;便可解决问题
The type List is not generic; List<> 作为函数返回值是报错
标签:
原文地址:http://www.cnblogs.com/hanwmBlog/p/5744240.html