Arrays.asList的坑

问题:
在这里插入图片描述
直接原因:

   public void add(int index, E element) {
        throw new UnsupportedOperationException();
    }

举个例子:下面2种方式有什么区别?
第一种
在这里插入图片描述

第二种
在这里插入图片描述
第二种运行时会崩溃!!!

在这里插入图片描述

/**
 * Returns a fixed-size list backed by the specified array.  (Changes to
 * the returned list "write through" to the array.)  This method acts
 * as bridge between array-based and collection-based APIs, in
 * combination with {@link Collection#toArray}.  The returned list is
 * serializable and implements {@link RandomAccess}.
 *
 * <p>This method also provides a convenient way to create a fixed-size
 * list initialized to contain several elements:
 * <pre>
 *     List&lt;String&gt; stooges = Arrays.asList("Larry", "Moe", "Curly");
 * </pre>
 *
 * @param <T> the class of the objects in the array
 * @param a the array by which the list will be backed
 * @return a list view of the specified array
 */

Arrays.asList返回的是内部类ArrayList对象且是不可变的(注意 private final E[] a), 而不是ArrayList.java, 即真假李逵。
这个内部类ArrayList没覆盖基类AbstractList的add方式, 所以在执行add方法时找的是基类的add方法, 从而报错。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值