方式二—-实现Runnable接口的方式开启
1.步骤
-
- 定义类实现Runnable接口
-
- 重写run方法
-
- 创建线程对象,并且将我们自己编写的Runnable接口的实现类传入
-
- 启动线程
2.代码示例:
// 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();
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/2336.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...