1. 程式人生 > >thread 執行緒執行順序

thread 執行緒執行順序

public class test{

public static void main(String[] args) {

        Thread t =new Thread(){
            public void run (){
                pong();
            }
        };
        t.run();
        System.out.println("ping");

    }

static void pong(){
        System.out.println("pong");
    }

}

輸出結果為  : pong  ping

理解: 執行緒被建立 只有調run方法才會執行