欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java使用Arrays.asList报UnsupportedOperationException的解决

程序员文章站 2022-07-04 23:53:07
项目场景:查询多个名销售的销售业绩,上层要求要在查询销售的业绩同事也要查看到每年的年度销售冠军,于是前端传递的是以“,”分割开的字符串。测试的时候就报错java.lang.unsupportedope...

项目场景:

查询多个名销售的销售业绩,上层要求要在查询销售的业绩同事也要查看到每年的年度销售冠军,于是前端传递的是以“,”分割开的字符串。测试的时候就报错java.lang.unsupportedoperationexception的异常

代码展示:

           // 这里隐藏了查询条件,所以就写死了
        list<string>  performid=new arraylist<>();
        performid.add("701728881476112384");
        performid.add("701728881497083904");
        string[] agentids = stringutils.split(agentid, ",");
        list<string> agentidlist = arrays.aslist(agentids);
        // 后面同事没有注意,就直接展示查询出来就加入
        agentidlist.addall(performid);

原因分析:

于是我们查看了源码,通过**arrays.aslist(t …a)**创建的 **return new arraylist<>(a);**以为是java.util包下的,所以就对它增删改了。查看源码发现,该方法并不支持增删改 源码如下:

 private static class arraylist<e> extends abstractlist<e> implements randomaccess, java.io.serializable{
        private static final long serialversionuid = -2764017481108945198l;
        private final e[] a;
        arraylist(e[] array) {
            a = objects.requirenonnull(array);
        }
        @override
        public int size() {
            return a.length;
        }
        @override
        public object[] toarray() {
            return a.clone();
        }
        @override
        @suppresswarnings("unchecked")
        public <t> t[] toarray(t[] a) {
            int size = size();
            if (a.length < size)return arrays.copyof(this.a, size,(class<? extends t[]>) a.getclass());
            system.arraycopy(this.a, 0, a, 0, size);
            if (a.length > size) a[size] = null;
            return a;
        }
        @override
        public e get(int index) {
            return a[index];
        }
        @override
        public e set(int index, e element) {
            e oldvalue = a[index];
            a[index] = element;
            return oldvalue;
        }

        @override
        public int indexof(object o) {
            e[] a = this.a;
            if (o == null) {
                for (int i = 0; i < a.length; i++)
                    if (a[i] == null) return i;
            } else {
              for (int i = 0; i < a.length; i++)
                   if (o.equals(a[i])) return i;
            }
            return -1;
        
        @override
        public boolean contains(object o) {
            return indexof(o) != -1;
        }
        @override
        public spliterator<e> spliterator() {
            return spliterators.spliterator(a, spliterator.ordered);
        }
        @override
        public void foreach(consumer<? super e> action) {
            objects.requirenonnull(action);
            for (e e : a) {
                action.accept(e);
            }
        }
        @override
        public void replaceall(unaryoperator<e> operator) {
            objects.requirenonnull(operator);
            e[] a = this.a;
            for (int i = 0; i < a.length; i++) {
                a[i] = operator.apply(a[i]);
            }
        }

        @override
        public void sort(comparator<? super e> c) {
            arrays.sort(a, c);
        }
    }

通过以上源码发现,arrays内部实现的arraylist并未实现增删改等的操作,继承了 abstractlist.class 类中抛出的 unsupportedoperationexception异常。源码如下:

    ##只粘贴了部分源码,详情可以去abstractlist.class中查看
    public void add(int index, e element) {
        throw new unsupportedoperationexception();
    }

总结:

arrays.aslist(t .....a)不能进行增删改等操作。在使用一下类的时候,看下源码会避免一些代码层的坑。

到此这篇关于java使用arrays.aslist报unsupportedoperationexception的解决的文章就介绍到这了,更多相关arrays.aslist报unsupportedoperationexception内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!