java 多线程写法
时间: 2023-10-12 10:52:04 浏览: 147
java 多线程编程
在 Java 中,有几种方式可以实现多线程。以下是其中两种常见的写法:
1. 继承 Thread 类:
```java
public class MyThread extends Thread {
public void run() {
// 线程执行的代码
System.out.println("线程执行中");
}
public static void main(String[] args) {
MyThread thread = new MyThread();
thread.start(); // 启动线程
}
}
```
2. 实现 Runnable 接口:
```java
public class MyRunnable implements Runnable {
public void run() {
// 线程执行的代码
System.out.println("线程执行中");
}
public static void main(String[] args) {
MyRunnable runnable = new MyRunnable();
Thread thread = new Thread(runnable);
thread.start(); // 启动线程
}
}
```
这两种方式都可以创建一个新的线程,并在其中定义线程执行的代码。继承 Thread 类可以直接重写 run() 方法,而实现 Runnable 接口需要实现 run() 方法,并将其作为参数传递给 Thread 类的构造函数。最后,通过调用 start() 方法来启动线程。
阅读全文