利用线程每十秒打印一句话

public class Test implements Runnable{

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Test t = new Test();
        Thread tA = new Thread(t);
        tA.start();
    }
    
    @Override
    public void run() {
        // TODO Auto-generated method stub
        int count=0;
        while(++count<10){
            System.out.println("123123123");
            try {
                Thread.sleep(100);
            } catch (Exception e) {
                // TODO: handle exception
                e.printStackTrace();
            }
        }
    }
}

 

上一篇:复习23种设计模式之代理模式


下一篇:我眼中的 RPC