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内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读
-
[JAVA IDEA]在使用maven项目中,无法读取resources文件夹中的配置文件的一种解决方案
-
解决ThinkPHP下使用上传插件Uploadify浏览器firefox报302错误的方法
-
ant编译java报“非法字符: \65279 ”错误的解决方法 z
-
java使用Jsoup连接网站超时的解决方法
-
java在linux系统下开机启动无法使用sudo命令的原因及解决办法
-
Java使用for循环解决经典的鸡兔同笼问题示例
-
java中排序报:Comparison method violates its general contract异常的解决
-
java在linux系统下开机启动无法使用sudo命令的原因及解决办法
-
java中使用sax解析xml的解决方法
-
Java 使用poi把数据库中数据导入Excel的解决方法