我正在尝试使用Collections.copy方法将一个List数据复制到另一个,但它给了我IndexOutofBoundsException异常。
源代码:
public static void main(String[] args) {
List<Integer> odds = Arrays.asList(1, 3, 5, 7, 9);
System.out.println("odds = " + odds);
//copy data from one to another using copy() method
List<Integer> anotherOdd = new ArrayList<>(odds.size());
Collections.copy(anotherOdd, odds);
System.out.println("anotherOdd = " + anotherOdd);
}
odds = [1, 3, 5, 7, 9]
Exception in thread "main" java.lang.IndexOutOfBoundsException: Source does not fit in dest
at java.util.Collections.copy(Unknown Source)
at com.study.java.collections.Main.main(Main.java:7)
请指导。
答案 0 :(得分:5)
Collections.copy
仅适用于已有两个相同大小的列表的情况。请注意Collections.copy
Javadoc中的这句话:
目的地列表必须至少与源列表一样长。
您的anotherOdd
列表容量 odds.size()
但 size 0.行new ArrayList<>(odds.size())
只是估算了ArrayList
将会是,它实际上并不意味着列表具有该大小。
但解决方案很简单:只需使用anotherOdd.addAll(odds)
,甚至更好,只需编写List<Integer> anotherOdd = new ArrayList<>(odds)
。
答案 1 :(得分:1)
您在ArrayList
使用的List<Integer> anotherOdd = new ArrayList<>(odds.size());
构造函数是指定容量而不是大小