当前位置: 技术问答>java相关
关于Thread建立的一个有趣的问题
来源: 互联网 发布时间:2015-04-21
本文导语: 大家看看下面两个程序的结果是否相同?为什么? // Thinking about the output public class SL275 extends Thread { public static void main(String argv[]) { SL275 r = new SL275(); r.start(); ...
大家看看下面两个程序的结果是否相同?为什么?
// Thinking about the output
public class SL275 extends Thread
{
public static void main(String argv[])
{
SL275 r = new SL275();
r.start();
}
public void start()
{
for(int i=0;i
// Thinking about the output
public class SL275 extends Thread
{
public static void main(String argv[])
{
SL275 r = new SL275();
r.start();
}
public void start()
{
for(int i=0;i