gpt4 book ai didi

java : Create multiple threads with different names (without using for loop)

转载 作者:行者123 更新时间:2023-12-02 04:53:38 25 4
gpt4 key购买 nike

我正在开发一个项目,当满足特定条件时,我必须创建一个或多个新线程。基本上我每次都被困在创建具有不同名称的新线程,因为我不知道在 tun 时间内会生成多少个线程。

示例:线程 t1= new thread();线程t2=新线程();等等.. 这里我不知道我是否需要直到t10或t99。

最佳答案

我知道您要求不循环,但这能满足您的需要吗?

int numberOfThreads = //whatever;
ArrayList<Thread> threadList = new ArrayList<>();
for(int i = 0; i<numberOfThreads; i++)
{
Thread t = new Thread();
threadList.add(t);
}

您可以通过索引而不是名称来调用线程,threadList.get(number);

关于java : Create multiple threads with different names (without using for loop),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28993503/

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