1、定义一个类用于实现Runnable接口

2、重写run()方法,编辑代码逻辑体

3、创建线程对象,调用start()开启线程

案例:我在学习

 1 public class study implements Runnable{
 2 //1、定义一个类用于实现Runnable接口
 3 //
 4 //2、重写run()方法,编辑代码逻辑体
 5 //
 6 //3、创建线程对象,调用start()开启线程
 7     public void run(){
 8         for (int i = 0; i < 100; i++) {
 9             System.out.println("我在学习");
10         }
11     }
12     public static void main(String[] args) {
13         //创建Runnable接口的实现类对象
14         study ex = new study();
15         //创建线程对象
16         // Thread t1 =new Thread(ex);
17         // t1.start();
18         //简写
19         new Thread(ex).start();
20 
21     }
22 }

 

posted on 2022-05-18 11:33  OYYC  阅读(52)  评论(0编辑  收藏  举报