实现接口开启线程(实现Runnable接口)
-
步骤
- 定义类实现Runnable接口
- 重写run()方法
- 在测试类创建子类对象
- 创建线程对象把子类对象作为参数传入构造方法
- 用线程对象调用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();
}
}