爪哇国新游记之十二----线程创建的两种形式

public class Thread1 extends Thread{
    public void run(){
        int i=0;
        while(i<10){
            i++;
            System.out.println(i);
        }
    }
    
    public static void main(String[] args){
        Thread1 t=new Thread1();
        t.start();
    }
}
public class Thread2 implements Runnable{

    @Override
    public void run() {
        int i=10;
        while(i>0){
            i--;
            System.out.println(i);
        }
    }
    
    public static void main(String[] args){
        Thread2 t=new Thread2();
        new Thread(t).start();
    }
}

线程,较难讲透,初学者不易掌握,带过即可。

posted @ 2014-07-25 10:59  逆火狂飙  阅读(141)  评论(0编辑  收藏  举报
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东