gpt4 book ai didi

java - x 个线程的多线程示例

转载 作者:行者123 更新时间:2023-12-02 00:27:23 25 4
gpt4 key购买 nike

我是多线程世界的新手,我不知道如果我们从命令提示符传递 x 个线程,我应该如何编写一个可以调用 x 个线程的 java 应用程序。就像我们路过一样

java –jar pds_client_batch.jar <number of threads>

这里如果线程数传递为 20,那么它应该运行 20 个线程。任何简单的例子将不胜感激。

最佳答案

public class Example
{
private class DumbThread implements Runnable
{
public void run()
{
System.out.println("Thread ran");
}
}

public static void main(String args[])
{
int input = Integer.parseInt(args[0]);
for (int x = 0; x < input; x++)
new Thread(new DumbThread()).start();
}
}

现在,如果你想让它做一些有用的事情......

编辑:变得更加完整。它仍然没有做任何有用的事情。而且它甚至不进行基本的错误检查。

关于java - x 个线程的多线程示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9741657/

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