- 实现Runnable接口
implements Runnable
- 重写run()方法
@Override
public void run(){//TODO}
- 创建线程对象:
Thread thread1 = new Thread(new ImplementsRunnable());
- 开启线程执行:
thread1.start();
public class ImplementsRunnable implements Runnable{
public static int num = 0;
@Override
public void run() {
for (int i = 0; i < 10; i++) {
System.out.println(Thread.currentThread().getName() + ": num = " + num++);
}
}
public static void main(String[] args) {
Thread thread1 = new Thread(new ImplementsRunnable());
Thread thread2 = new Thread(new ImplementsRunnable());
thread1.setName("线程1");
thread2.setName("线程2");
thread1.start();
thread2.start();
}
}