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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 夕阳游子 中级黑马   /  2015-9-7 21:47  /  278 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


线程联合:
       一个线程A在占用CPU资源期间,可以让其它线程调用join()方法和本线程联合,B.join();称为A在运行期间联合的B。联合后A线程立刻中止执行,一直等到它联合的线程B执行完毕,线程A再重新排队等候。如果A准备联合的B已经结束,那么B.join()不会产生任何效果。
public class JoinThread implements Runnable {
       Thread threadA, threadB;
       String content[] = { "今天晚上", "大家不要", "回去得太早", "还有工作需要大家做!" };
       public JoinThread() {
              threadA = new Thread(this);
              threadB = new Thread(this);
              threadB.setName("经理");
       }
       public void run() {
              if (Thread.currentThread() == threadA) {
                     System.out.println("我等" + threadB.getName() + "说完我再说!");
                     try {
                            threadB.join();
                     } catch (Exception e) {
                            e.printStackTrace();
                     }
                     System.out.println("\n我开始说话了,我明白你的意思了,谢谢!");
              } else {
                     try {
                            System.out.println(threadB.getName() + "说:");
                            for (int i = 0; i < content.length; i++) {
                                   System.out.println(content);
                                   threadB.sleep(1000);
                            }
                     } catch (Exception e) {
                            e.printStackTrace();
                     }
              }
       }
}
public class TestJoinThread {
       public TestJoinThread() {
       }
       public static void main(String[] args) {
              JoinThread test = new JoinThread();
              test.threadA.start();
              test.threadB.start();
       }
}
[/td][/tr][/table]

0 个回复

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