关于list集合add(),remove()等方法崩溃问题(UnsupportedOperationException)

java.lang.UnsupportedOperationException是不支持功能异常,常常出现在使用Arrays.asList()后调用add,remove这些method时。

这是由于:

Arrays.asList() 返回java.util.Arrays$ArrayList, 而不是ArrayList。Arrays$ArrayList和ArrayList都是继承AbstractList,remove,add等method在AbstractList中是默认throw UnsupportedOperationException而且不作任何操作。ArrayList override这些method来对list进行操作,但是Arrays$ArrayList没有override remove(int),add(int)等,所以throw UnsupportedOperationException。

解决方法:

可以使用list集合的子类来实现这些方法。

你可能感兴趣的:(关于list集合add(),remove()等方法崩溃问题(UnsupportedOperationException))