Runnable r = new ThreadTest();
Thread t = new Thread(r);
t.start();
t.join();
t.join();的意思是不是说:等t死了,再执行别的线程。t不死,别执行!。是这样么?