java中可有两种方式实现多线程, 一种是继承Thread类,(Thread本身实现了Runnable接口,就是说需要写void run 方法,来执行相关操作) 一种是实现Runnable接口 start, 和主线程一起执行,执行的顺序不确定 join,线程们 先执行,当所有的子线程执行完毕后,主线程才执行操作(文章最下面的例子) // 1 Provide a Runnable object, the Thread class itself implements Runnable//~~~ 1.…