1.首先来说说创建线程的两种方式 一种方式是继承Thread类,并重写run()方法 public class MyThread extends Thread{ @Override public void run() { // TODO Auto-generated method stub } } //线程使用 MyThread mt = new MyThread(); //创建线程 mt.start(); //启动线程 另外一种方式是实现Runnable接口 public class MyTh…