java如何使用多线程,写出一个例子
时间: 2024-03-06 14:50:10 浏览: 72
Java中使用多线程可以通过继承Thread类或实现Runnable接口来实现。以下是一个使用Runnable接口的例子:
```java
public class MyRunnable implements Runnable {
public void run() {
for(int i=0; i<5; i++) {
System.out.println("Thread " + Thread.currentThread().getId() + " is running.");
}
}
}
public class Main {
public static void main(String[] args) {
MyRunnable runnable = new MyRunnable();
Thread thread1 = new Thread(runnable);
Thread thread2 = new Thread(runnable);
thread1.start();
thread2.start();
}
}
```
以上代码中,MyRunnable类实现了Runnable接口并重写了run()方法,在run()方法中打印了当前线程的ID和正在运行的信息。在Main类中,创建了两个Thread对象,分别传入MyRunnable实例,并调用start()方法启动线程。运行该程序,可以看到两个线程交替执行run()方法。
阅读全文