Thread tt = new Thread(new HelloRunnable());
tt.start();
tt.join();看了些解释说,join是指让当前线程等待线程tt终止,然后再继续执行
那既然是这样子,为什么还要生成thread tt干吗呢,不直接全在当前线程里顺序执行?效果不是一样?