方式二—-实现Runnable接口的方式开启
1.步骤
-
- 定义类实现Runnable接口
-
- 重写run方法
-
- 创建线程对象,并且将我们自己编写的Runnable接口的实现类传入
-
- 启动线程
2.代码示例:
代码语言:javascript复制// 1. 定义类实现Runnable接口
class MyRunnable implements Runnable {
private int tickets = 100;
// 2.重写run方法
public void run() {
// 这里的代码就是任务的代码,和写主方法是一样,线程启动之后会自动调用我们编写的run方法
for (int i = 1; i <= 100; i ) {
System.out.println(Thread.currentThread().getName() ":" i);
}
}
}
public class ThreadDemo03 {
public static void main(String[] args) {
// 3. 创建线程对象,并且将我们自己编写的Runnable接口的实现类传入
Runnable runnable = new MyRunnable();
Thread t1 = new Thread(runnable);
Thread t2 = new Thread(runnable);
Thread t3 = new Thread(runnable);
// 4. 启动线程
t1.start();
t2.start();
t3.start();
}
}
发布者:全栈程序员栈长,转转请注明出处:https://javaforall.cn/2336.html原文链接: