使用java并行输出hello world
时间: 2023-12-14 15:05:06 浏览: 77
以下是使用Java并行输出hello world的示例代码:
```java
public class HelloWorldParallel implements Runnable {
private int id;
public HelloWorldParallel(int id) {
this.id = id;
}
public void run() {
for (int i = 0; i < 10; i++) {
System.out.println(Thread.currentThread().getName() + " says hello world! " + id);
}
}
public static void main(String[] args) {
for (int i = 0; i < 5; i++) {
new Thread(new HelloWorldParallel(i)).start();
}
}
}
```
该程序创建了5个线程,每个线程都会输出10次“hello world!”和线程的名称和id。由于线程是并行执行的,因此输出的顺序可能会有所不同。
阅读全文