摘要:
1 //方式一 2 public class TestThread1 { 3 public static void main(String args[]) { 4 Runner1 r = new Runner1(); 5 r.start(); 6 7 for(int i=0; i<100; i++) { 8 System.out.println("Main Thread:------" + i); 9 }10 }11 }12 13 class Runner1 extend... 阅读全文
2012年4月25日 #