当前位置: 技术问答>java相关
关于多线程,执行先后的问题。望给与提示。谢谢!
来源: 互联网 发布时间:2015-05-21
本文导语: class NewThread implements Runnable { Thread t; NewThread() { t=new Thread(this,"Demo Thread"); t.start(); } public void run() { System.out.println("Child thread running"); } } class ThreadDemo { public static void main(String args[]) { new NewThr...
class NewThread implements Runnable
{
Thread t;
NewThread()
{
t=new Thread(this,"Demo Thread");
t.start();
}
public void run()
{
System.out.println("Child thread running");
}
}
class ThreadDemo
{
public static void main(String args[])
{
new NewThread();
System.out.println("Main thread point.");
}
}
运行ThreadDemo后结果如下:
Main thread point.
Child thread running
另我困惑不解的是:为什么Child thread running会在Main thread point.之后?
我认为在System.out.println("Main thread point.");之前已经new了NewThread,那么程序将先运行NewThread的构造函数,而构造函数中的t.start();使NewThread开始运行,那么将先运行System.out.println("Child thread running");然后再返回到ThreadDemo中继续运行System.out.println("Main thread point.");。如果这样的话,结果就该是:
Child thread running
Main thread point.
为什么会不是这样呢?
请高手给与提示。
{
Thread t;
NewThread()
{
t=new Thread(this,"Demo Thread");
t.start();
}
public void run()
{
System.out.println("Child thread running");
}
}
class ThreadDemo
{
public static void main(String args[])
{
new NewThread();
System.out.println("Main thread point.");
}
}
运行ThreadDemo后结果如下:
Main thread point.
Child thread running
另我困惑不解的是:为什么Child thread running会在Main thread point.之后?
我认为在System.out.println("Main thread point.");之前已经new了NewThread,那么程序将先运行NewThread的构造函数,而构造函数中的t.start();使NewThread开始运行,那么将先运行System.out.println("Child thread running");然后再返回到ThreadDemo中继续运行System.out.println("Main thread point.");。如果这样的话,结果就该是:
Child thread running
Main thread point.
为什么会不是这样呢?
请高手给与提示。
|
线程start了,但是还处于等待的状态,
要分配到了CPU才能处于活跃的状态。
理论上
Main thread point.
Child thread running
和
Child thread running
Main thread point
都有可能
要分配到了CPU才能处于活跃的状态。
理论上
Main thread point.
Child thread running
和
Child thread running
Main thread point
都有可能
|
具体要看虚拟机怎么调度了,两个结果都有可能的
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。