码迷,mamicode.com
首页 > 其他好文 > 详细

【坑】不要使用各种框架提供的内部List

时间:2019-05-04 17:28:24      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:list()   string   实现   class   import   null   utils   empty   comm   

为了代码简洁有时我们会使用一些框架提供的工具类。如

import org.apache.commons.collections.ListUtils;
package java.util.Collections;

 List<String> strList = ListUtils.EMPTY_LIST;

List<String> strList1 = Collections.emptyList();

实际该空List是个内部类,没有实现add等方法,使用时会报错。


 /**
    * {@inheritDoc}
    *
    * <p>This implementation always throws an
    * {@code UnsupportedOperationException}.
    *
    * @throws UnsupportedOperationException {@inheritDoc}
    * @throws ClassCastException            {@inheritDoc}
    * @throws NullPointerException          {@inheritDoc}
    * @throws IllegalArgumentException      {@inheritDoc}
    * @throws IndexOutOfBoundsException     {@inheritDoc}
    */
   public void add(int index, E element) {
       throw new UnsupportedOperationException();
   }

又如,使用

arrays.aslist(T...a)

再进行add操作,同样会报该错。
https://www.2cto.com/kf/201806/751606.html

因此,还是老老实实使用下面方式初始化List

List<String> strList=new ArrayList<>();

或者确认工具类提供的是java的ArrayList再使用。

【坑】不要使用各种框架提供的内部List

标签:list()   string   实现   class   import   null   utils   empty   comm   

原文地址:https://www.cnblogs.com/z00377750/p/10809006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!