其他分享
首页 > 其他分享> > 建立一个每隔10秒执行的线程

建立一个每隔10秒执行的线程

作者:互联网

建立一个每隔10秒执行的线程

  //线程类 public class TestThread extends Thread {     public void run() {         while(true){             try {                 sleep(6*1000);                                 //这里可以写你自己要运行的逻辑代码                 System.out.println("一分钟运行一次");             catch (InterruptedException e) {                 // TODO Auto-generated catch block                 e.printStackTrace();             }                       }     } } //运行线程类MAIN public class TestThreadMain {       /**      * @param args      */     public static void main(String[] args) {         // TODO Auto-generated method stub         TestThread testThread = new TestThread();         testThread.start();     }   }

标签:10,void,args,线程,每隔,TODO,public,TestThread
来源: https://www.cnblogs.com/qtfwax/p/15922360.html