黑马程序员技术交流社区

标题: 加入线程 [打印本页]

作者: feey    时间: 2016-5-24 23:36
标题: 加入线程
public class Join {
/**
   加入线程
  * @throws
  */
public static void main(String[] args)    {
  final Thread t1 = new Thread() {
   public void run(){
    for (int i = 0; i < 5; i++) {
     System.out.println(getName() + "...aaa");
    }
   }
  };
  Thread t2 = new Thread(){
   public void run() {
    for (int i = 0; i < 10; i++) {
     System.out.println(getName() + "...bbb");
    }
   }
  };
  t1.start();
  t2.start();
  
   try {
    t1.join();
   } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }

  
}
}






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2