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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

/*
join:
当A线程遇到了B线程的join()方法时,A就会等待,等到B线程执行完,A才会执行。

join可以用来临时加入线程执行。

*/

class Dem implements Runnable
{
        public void run()
        {
                for(int x = 0;x<70;x++)
                {
                        System.out.prtintln("你好明天");
                }
        }
}
class Jon
{
        public static void main(String[] args)
        {
                Dem d = new Dem();
                Thread t1 = new Thread();
                Thread t2 = new Thread();
                t1.start();
                t2.start();
                t1.join();
                System.out.println("线程加入");
        }
}

3 个回复

倒序浏览
   System.out.prtintln("你好明天");打错了
  Thread t1 = new Thread();
  Thread t2 = new Thread();
这线程对象里啥都没有,当然没结果了,Thread t1 = new Thread(d);Thread t2 = new Thread(d);
多看视频
回复 使用道具 举报
哦谢谢我一定会努力的
回复 使用道具 举报
额,还没学到哪儿呢
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马