我正试图了解ThreadPoolExecutor
中队列的行为。在下面的程序中,当我使用LinkedBlockingQueue
时,我一次只能向线程池提交一个任务。但是如果我用LinkedBlockingQueue
替换SynchronousQueue
,我可以立即将所有5个任务提交到池中。在这种情况下,SynchronousQueue
与LinkedBlockingQueue
的区别如何?
Java程序:
import java.util.concurrent.Executors;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.SynchronousQueue;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
public class Sample {
public static void main(String[] args) throws InterruptedException {
LinkedBlockingQueue<Runnable> threadPoolQueue = new LinkedBlockingQueue<>();
// SynchronousQueue<Runnable> threadPoolQueue = new SynchronousQueue<>();
ThreadFactory threadFactory = Executors.defaultThreadFactory();
ThreadPoolExecutor tpe = new ThreadPoolExecutor(0, Integer.MAX_VALUE, 60L, TimeUnit.SECONDS, threadPoolQueue, threadFactory);
Runnable np;
for (int i = 1; i <= 5; i++) {
np = new SampleWorker("ThreadPoolWorker " + i);
tpe.submit(np);
}
System.out.println(tpe.getCorePoolSize());
System.out.println(tpe.getPoolSize());
System.out.println(tpe.getActiveCount());
tpe.awaitTermination(Long.MAX_VALUE, TimeUnit.MILLISECONDS);
tpe.shutdown();
System.out.println("Main task finished");
}
}
class SampleWorker implements Runnable {
private String workerName;
SampleWorker(String tName) {
workerName = tName;
}
@Override
public void run() {
try {
for (int i = 1; i <= 10; i++) {
Thread.sleep(3000);
System.out.println(this.workerName);
}
System.out.println(this.workerName + " finished");
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
答案 0 :(得分:6)
当您向ThreadPoolExecutor
提交任务时,它的工作方式如下:
if (numberOfWorkingThreads < corePoolSize) {
startNewThreadAndRunTask();
} else if (workQueue.offer(task)) {
if (numberOfWorkingThreads == 0) {
startNewThreadAndRunTask();
}
} else if (numberOfWorkingThreads < maxPoolSize)
startNewThreadAndRunTask();
} else {
rejectTask();
}
LinkedBlockingQueue
时,
workQueue.offer(task)
将永远成功,只有一个
线程开始。SynchronousQueue.offer(task)
时,只有在成功时才会成功
另一个线程正在等待接收它。既然没有等待
将返回线程false
并且每次创建新线程
时间。