java 延時的幾種方法方法


Java 延時常見的幾種方法 

 

1、 用Thread就不會iu無法終止

復制代碼
new Thread(new Runnable() {
            public void run() {
                while (true) {
                    test();
                    try {
                        Thread.sleep(500);
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }
            }
            private void test() {
                // TODO Auto-generated method stub
            }
            public Runnable start() {
                // TODO Auto-generated method stub
                return null;
            }
        }.start());
復制代碼

2、 或者用現成的

javax.swing.Timer timer = new javax.swing.Timer(500, new ActionListener() {   public void actionPerformed(ActionEvent e) {     repaint();   } };

timer.start();

3、下面這個方法測試過可以用 java非線程延時

復制代碼
import java.awt.Robot;
import java.util.Date;

public class test {
     public   static   void   main(String[]   args)   throws   Exception{   
         Robot  r   =   new   Robot(); 
         System.out.println( "延時前:"+new Date().toString()  ); 
         r.delay(   2000   );   
         System.out.println(   "延時后:"+new Date().toString()   );   
   }   
}
復制代碼

 

  4、 用這下面的TimeTask類(指定延時)

java里面的sleep()並不能精確定時,TimeTask可以:例下面的小程序:

復制代碼
import java.util.*;

public class test {
    public static void main(String[] args) {
        Timer timer = new Timer();// 實例化Timer類
        timer.schedule(new TimerTask() {
            public void run() {
                System.out.println("退出");
                this.cancel();
            }
        }, 5000);// 這里百毫秒
        System.out.println("本程序存在5秒后自動退出");
    }
}
復制代碼

 5.用concurrent包的TimeUnit類延時sleep()方法延時

package concurrency;
//: concurrency/SleepingTask.java
// Calling sleep() to pause for a while.
import java.util.concurrent.*;

public class SleepingTask extends LiftOff {
  public void run() {
    try {
      while(countDown-- > 0) {
        System.out.print(status());
        // Old-style:
        // Thread.sleep(100);
        // Java SE5/6-style:
        TimeUnit.MILLISECONDS.sleep(100);//MILLISECONDS表示以毫秒為單位延時
      }
    } catch(InterruptedException e) {
      System.err.println("Interrupted");
    }
  }
  public static void main(String[] args) {
    ExecutorService exec = Executors.newCachedThreadPool();
    for(int i = 0; i < 5; i++)
      exec.execute(new SleepingTask());
    exec.shutdown();
  }
} /* Output:
#0(9), #1(9), #2(9), #3(9), #4(9), #0(8), #1(8), #2(8), #3(8), #4(8), #0(7), #1(7), #2(7), #3(7), #4(7), #0(6), #1(6), #2(6), #3(6), #4(6), #0(5), #1(5), #2(5), #3(5), #4(5), #0(4), #1(4), #2(4), #3(4), #4(4), #0(3), #1(3), #2(3), #3(3), #4(3), #0(2), #1(2), #2(2), #3(2), #4(2), #0(1), #1(1), #2(1), #3(1), #4(1), #0(Liftoff!), #1(Liftoff!), #2(Liftoff!), #3(Liftoff!), #4(Liftoff!),
*///:~

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM