java - 为什么异步线程不能同时修改 ArrayList?

标签 java multithreading asynchronous

我正在研究线程并在这里发现了这个片段:

我们创建并启动两个相同的 java.lang.Thread 并让它们连续修改一个 ArrayList 而不做任何关于这是非线程安全的事情,因为我们'我只是在做一个研究。

两个线程都只是同一个类 NoteThread 的实例。在 run() 方法中有两个操作:

  1. add(item) 到列表
  2. 从列表中删除(0)

这两个操作在 1000 次迭代中执行。

public class Solution {
    public static void main(String[] args) {
        new NoteThread().start();
        new NoteThread().start();
    }

    public static class Note {

        public static final List<String> notes = new ArrayList<String>();

        public static void addNote(String note) {
            notes.add(0, note);
        }

        public static void removeNote(String threadName) {
            String note = notes.remove(0);
            if (note == null) {
                System.out.println("Another thread has already deleted the note");
            } else if (!note.startsWith(threadName)) {
                System.out.println("Thread [" + threadName + "] has deleted [" + note + "]");
            }
        }
    }

    public static class NoteThread extends Thread{
        @Override
        public void run() {
            for (int i = 0; i < 1000; i++) {
                Note.addNote(getName() + "-Note" + i);
                Note.removeNote(getName());
            }
        }
    }
}

有时,它会在列表为空时抛出 IndexOutOfBoundsException: Index: 0, Size: -1 而我不明白这是怎么可能的。

输出示例:

Thread [Thread-1] has deleted [Thread-0-Note597]         
Another thread has already deleted the note         
Thread [Thread-0] has deleted [Thread-1-Note558]         
Another thread has already deleted the note         
Thread [Thread-1] has deleted [Thread-0-Note635]         
Another thread has already deleted the note         
Thread [Thread-0] has deleted [Thread-1-Note580]

我们可以 100% 确定,在同一个线程中,项目的创建总是发生在删除之前,所以我假设不可能遇到线程想要删除项目但找不到的情况一。

更新:Sergey Rybalkin已经非常清楚地解释了程序化执行顺序的概念(我最初没有在问题中提到但无论如何都是这个意思)而且最重要的是,他已经回答了这个问题:

If Thread 1 adds something, Thread 2 will not see the changes in some situations.

在 Java 内部,我们修改的每个对象实际上在使用它的每个线程中都有它的缓存副本。因为这个例子没有做任何关于线程安全的事情,我们修改的数组也被缓存到每个线程。现在,既然如此,就有可能:

注意,这只是我的理解,我不是专家

  1. 线程 1 将数组复制到它的缓存中。
  2. 线程 2 将数组复制到它的缓存中。
  3. 线程 1 将一个项目添加到它的缓存数组中。
  4. 线程 2 将一个项目添加到它的缓存数组中。
  5. 线程 1 从其缓存数组中删除一个项目。
  6. 线程 1 将其缓存数组刷新到实际数组中。
  7. JVM 传播更改并将实际数组上传到该对象的所有用户 - 到 Thread 2。因此,第二个线程现在拥有当前为空的数组的更新版本。
  8. 线程 2 从其缓存数组中删除一个项目。
  9. 异常:列表已经为空:IndexOutOfBoundsException:索引:0,大小:-1<

最佳答案

您正在并发修改数据结构 ArrayList

  1. ArrayList 不是线程安全的。
  2. 您的循环迭代不是原子的。
  3. 您不提供任何订购元素。

如果我们命名 A1 - 添加线程 1,A2 - 添加线程 2,R1 - 删除 int 线程 1,R2 - 在线程 2 和之前的 > 中删除。 在一次迭代中,您可以获得:

  1. A1 > R1 > A2 > R2
  2. A1 > A2 > R1 > R2
  3. A1 > A2 > R2 > R1
  4. ...

我们只知道总是A1 > R1A2 > R2 此外,调度程序可以在线程 1 中执行多次迭代,并且仅在切换到线程 2 之后执行。

因此,没有理由期望您的两个线程中的任何操作顺序。在这种情况下,您所拥有的只是在单个线程中添加和删除的编程顺序。但是您没有 Happens Before 关系。查看更多 JLS 17 . 但最好先有一个基本的了解。

关于java - 为什么异步线程不能同时修改 ArrayList?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44326983/

相关文章:

java - fb 中的操作 :request form is always null

java - Intel i7 vs i5 使用 java 多线程

asynchronous - 如何组合 Lwt 过滤器?

asynchronous - 当用户尚未登录时,FB.ui() 在 Safari 中通过异步请求给出错误

c# - 多线程服务器中的处理限制

swift - Swift 中 `async let` 声明的类型是什么?

java - 识别 Google Drive Change 类型

java - OpenGL Interleaved VBO 跨步和偏移

java - 一个 Action 只执行一次

multithreading - 跟踪后台进程?