我实际上正在学习集合和异常,但我不明白为什么会这样:
List<Integer> intList = new ArrayList<Integer>(Arrays.asList(1,2,3,4,5,6,7,8,9,10));
for (Integer s : intList) {
Collections.shuffle(intList);
System.out.println(s);
}
阅读文档,它指出
当这种修改是不允许的时,检测到对象的并发修改的方法可能会抛出此异常。
查看 Collections 的源代码:
public static void shuffle(List<?> list) {
if (r == null) {
r = new Random();
}
shuffle(list, r);
}
所以我看一下随机播放功能:
public static void shuffle(List<?> list, Random rnd) {
int size = list.size();
if (size < SHUFFLE_THRESHOLD || list instanceof RandomAccess) {
for (int i=size; i>1; i--)
swap(list, i-1, rnd.nextInt(i));
} else {
Object arr[] = list.toArray();
// Shuffle array
for (int i=size; i>1; i--)
swap(arr, i-1, rnd.nextInt(i));
// Dump array back into list
ListIterator it = list.listIterator();
for (int i=0; i<arr.length; i++) {
it.next();
it.set(arr[i]);
}
}
}
最后它调用交换函数:
public static void swap(List<?> list, int i, int j) {
final List l = list;
l.set(i, l.set(j, l.get(i)));
}
这不会在迭代时修改当前列表(或者这是因为这一行final List l = list;
)?我想我错过了一些重要的东西。