在我们的应用程序中,我们在ArrayList.add(Object o)
操作中遇到了 ArrayIndexOutOfBounds 异常。最明显的解释是线程安全,但我无法重新创建事件。我试过创建两个线程。在一个中,我正在添加元素,在另一个中,我正在删除它们(或清除数组),但我第二次没有得到异常。我的意思是很明显,通过查看 ArrayList 的源代码就可以实现,但是能够演示它会很好。
我已经运行这个测试很长一段时间了,没有任何例外:
public class Test {
static ArrayList a = new ArrayList();
public static void main(String[] args) throws Exception {
Thread t1 = new Thread() {
public void run() {
while (true) {
if (a.size() > 0)
a.remove(0);
}
}
};
Thread t2 = new Thread() {
public void run() {
while (true) {
a.add(new Object());
}
}
};
t2.start();
Thread.sleep(100);
t1.start();
}
}