A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

写的是join的使用。
  1. package Thread;

  2. public class TestJoin {
  3.         public static void main(String[] args) {
  4.                 MyThread2 t1 = new MyThread2("T1");
  5.                 t1.start();
  6.                 try{
  7.                         t1.join();
  8.                 }
  9.                 catch(InterruptedException e){}
  10.                
  11.                 for(int i=1;i<=10;i++) {
  12.                         System.out.println("i am main thread");
  13.                 }
  14.         }
  15. }

  16. class MyThread2 extends Thread {
  17.         MyThread2(String s) {
  18.                 super(s);
  19.         }
  20.         public void run() {
  21.                 for(int i=1;i<=10;i++) {
  22.                         System.out.println("i am "+getName());
  23.                         try {
  24.                                 sleep(1000);
  25.                         }
  26.                         catch(InterruptedException e) {
  27.                                 return;
  28.                         }
  29.                 }
  30.         }
  31. }
复制代码



0 个回复

您需要登录后才可以回帖 登录 | 加入黑马