gpt4 book ai didi

java - 线程池执行代码,但 IDE 内容辅助中没有关闭选项

转载 作者:行者123 更新时间:2023-11-30 01:50:29 28 4
gpt4 key购买 nike

我正在尝试在为每个线程分配参数的应用程序中执行并发。执行线程池。我在处理过程中发现,创建的线程似乎比预期的要多。也没有可用的关闭选项。也许下面的代码能更好地说明问题?

这是每个线程最终都会到达的方法,Arraylist是在前面的方法中创建的。线程的创建方式如下:

 Executor executor = 
Executors.newFixedThreadPool(threadCount);
for (final String server : serverList) {
executor.execute(new Runnable() {
@Override
public void run() {
while
(!Thread.currentThread().isInterrupted()) {
try {
...


retrieveMetrics(filterItem,pserver,assignedServer,
Bean);

在 while 循环结束时,我尝试实现 executor.shutdown() 但它不是一个已定义的方法。另外,我上面的实现是否正确,实际上只允许创建有限数量的线程。感谢这里的建议和回复。

编辑:

no shutdown method

由于某种原因,我无法使用 shutdown()。

编辑2:

thread count

最佳答案

你必须使用下面

ExecutorService executorService = Executors.newFixedThreadPool(threadCount);

而不是

Executor executor =  Executors.newFixedThreadPool(threadCount);

关于java - 线程池执行代码,但 IDE 内容辅助中没有关闭选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56239967/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com