摘要:
public class Demo6{ public static void main(String args[]){ for(int i=0;i<100;i++){ System.out.println("----main----"+i); } Thread t1=new Thread(new T1()); t1.start(); }}class T1 implements Runnable{ public void run(){ for(int i=0;i<100;i++){ if(i==5){ try{ Thread.sleep(3000); }ca... 阅读全文
posted @ 2013-03-08 19:00
stt_spring
阅读(151)
评论(0)
推荐(0)
浙公网安备 33010602011771号