Java多线程学习总结--线程概述及创建线程的方式(1)(二)
Thread thread1 = new Thread(target);
Thread thread2 = new Thread(target);
thread1.start();
thread2.start();
}
}