实现接口开启线程(实现Runnable接口)

  • 步骤

 

  1. 定义类实现Runnable接口
  2. 重写run()方法
  3. 在测试类创建子类对象
  4. 创建线程对象把子类对象作为参数传入构造方法
  5. 用线程对象调用start()方法开启线程
//1.类实现Runnable接口
public class BBB implements Runnable {


    //2.重写run方法,把代码写在run方法里面
    @Override
    public void run() {
        for (int i = 0; i < 100; i++) {
            System.out.println("新线程" + i);
        }
    }
}

 

public class Test02 {
    public static void main(String[] args) {
        //3.创建子类对象
        BBB b = new BBB();
        //4.创建线程对象传入子类对象作为参数
        Thread t = new Thread(b);
        //5.调用start()方法开启线程
        t.start();
}
}

 

posted @ 2021-08-09 15:27  冰红茶灬  阅读(226)  评论(0编辑  收藏  举报