我正在将 ExecutorService 用于多线程进程 - 我有 ID 列表,对于每个 ID,我使用线程制作代码的一部分。
ExecutorService executor = Executors.newFixedThreadPool(4);
for (String id : listOfIDs) {
Runnable worker = new WorkerThread(id);
executor.execute(worker);
}
executor.shutdown();
....
一切正常,结果符合预期。但是因为我有很多ID,所以我需要更有效地做这部分。我有性能问题,似乎是因为创建了 WorkerThreads 的 lof。我决定为 baseIds 列表运行它,然后在 WorkerThread 中的run方法(或从那里调用的其他方法)循环遍历每个线程的列表。但我对java.util.ConcurrentModificationException有问题。我究竟做错了什么?
for (String id : listOfIDs) {
listForThreads.add(id);
if (listForThreads.size() >= 100) {
Runnable worker = new WorkerThread(listForThreads);
executor.execute(worker);
listForThreads.clear();
}
}
....
public static class WorkerThread implements Runnable {
private List<String> listForThreads;
public WorkerThread (List<String> listForThreads) {
this.listForThreads = listForThreads;
}
public void run() {
for (String id : listForThreads) {
process(id);
}
} ....
我以为我只会在一个线程中处理更多的 ID,而不是每个线程的 id。是否可以使用 ExecutorService 来“批量”运行某些进程?