黑马程序员技术交流社区
标题:
为什么我的主线程和t2线程没有运行呢?
[打印本页]
作者:
邓熊财
时间:
2015-3-23 20:13
标题:
为什么我的主线程和t2线程没有运行呢?
/*
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("线程加入");
}
}
作者:
鲍阳
时间:
2015-3-23 21:47
System.out.prtintln("你好明天");打错了
Thread t1 = new Thread();
Thread t2 = new Thread();
这线程对象里啥都没有,当然没结果了,Thread t1 = new Thread(d);Thread t2 = new Thread(d);
多看视频
作者:
邓熊财
时间:
2015-3-24 14:08
哦谢谢我一定会努力的
作者:
wrui
时间:
2016-6-28 23:40
额,还没学到哪儿呢
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2