我正在尝试使用Collections.copy方法将一个List数据复制到另一个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)


请指导。

最佳答案

Collections.copy仅在您已经有两个大小相同的列表时才使用。请注意Collections.copy Javadoc中的这句话:


  目标列表必须至少与源列表一样长。


您的anotherOdd列表的容量为odds.size(),但是大小为0。行new ArrayList<>(odds.size())只是估算了ArrayList的长度,这实际上并不意味着列表具有该大小。

但是解决方案很简单:只需使用anotherOdd.addAll(odds),或者甚至更好,只需编写List<Integer> anotherOdd = new ArrayList<>(odds)

08-24 18:14