Cannot instantiate the type List<String>
今天在进行Java代码编写时,
当我定义一个list时,确出现了以下警告信息
只需将代码修改为以下模式即可
当我定义一个list时,确出现了以下警告信息
Cannot Instantiate the type List<String>那么如何处理此种异常呢?下文将一一道来,如下所示:
只需将代码修改为以下模式即可
List<String> strList = new List<String>(); 修改为 List<String> strList = new ArrayList<String>();
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。