public class MyThread extends Thread{
//重写run方法,run方法的方法体就是现场执行体
public void run()
{
System.out.println("创建订单");
}
}
public class Test {
public static void main(String[] args)
{
new MyThread ().start(); //开启一个线程
new MyThread ().start(); //开启一个线程
}
}