Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1109701
  • 博文数量: 284
  • 博客积分: 8223
  • 博客等级: 中将
  • 技术积分: 3188
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-01 13:26
文章分类

全部博文(284)

文章存档

2012年(18)

2011年(33)

2010年(83)

2009年(147)

2008年(3)

分类: C/C++

2010-07-06 21:15:50

class NewThread implements Runnable{
    Thread t;
    NewThread(){
        t = new Thread(this, "Demo Thread");
        System.out.println("child thread"+t);
        t.start();
    }
    public void run(){
        System.out.println("begin child");
        try{
            for(int i=5;i>0;i--){
                System.out.println("child Thread:"+i);
                Thread.sleep(50);
            }
        }catch(InterruptedException e){
            System.out.println("child interrupted");
        }
        System.out.println("end child");
        
    }
}
public class test {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        NewThread ob = new NewThread();
        System.out.println("main is :"+ob.t.isAlive());
        try{
            ob.t.join();
        }catch(InterruptedException e){
            System.out.println("main interrupted");
        }
        System.out.println("main is :"+ob.t.isAlive());
    }

}


阅读(885) | 评论(0) | 转发(0) |
0

上一篇:jsp+javabean+servlet练习

下一篇:java-applet

给主人留下些什么吧!~~