本帖最后由 张华廷 于 2012-6-20 12:11 编辑
public class threaDemo {
public static void main(String[] args)
{
//Demo d=new Demo();//创建好一个线程
//d.start();
for(int x=0;x<80;x++)
{
System.out.println("hello word"+x );
}
Demo d=new Demo();//创建好一个线程 这两句放在下面一直执行完"hello word"+x,然后才//执行"hello"+x
d.start();
}
}
class Demo extends Thread
{
public void run()
{
for(int x=0;x<50;x++)
{
System.out.println("hello"+x);
}
}
} |
|