摘要: =三个线程顺序执行package lee.hao.review; import java.io.IOException; public class Test3 { public static void main(String arg[]) throws IOException { final Test obj = new Test(); new Thread() { public void run() { obj.m1(); } }.start(); new Thread() { public void run() { ob... 阅读全文
posted @ 2012-10-16 15:53 Leeforall 阅读(301) 评论(0) 推荐(0) 编辑