java concurrent

我们都知道,在JDK1.5之前,Java中要进行业务并发时,通常需要有程序员独立完成代码实现,当然也有一些开源的框架提供了这些功能,但是这些依然没有JDK自带的功能使用起来方便。而当针对高质量Java多线程并发程序设计时,为防止死蹦等现象的出现,比如使用java之前的wait()、notify()和synchronized等,每每需要考虑性能、死锁、公平性、资源管理以及如何避免线程安全性方面带来的危害等诸多因素,往往会采用一些较为复杂的安全策略,加重了程序员的开发负担.万幸的是,在JDK1.5出现之后,Sun大神(Doug Lea)终于为我们这些可怜的小程序员推出了java.util.concurrent工具包以简化并发完成。开发者们借助于此,将有效的减少竞争条件(race conditions)和死锁线程。concurrent包很好的解决了这些问题,为我们提供了更实用的并发程序模型。

Java代码  收藏代码
  1. Executor                  :具体Runnable任务的执行者。  
  2. ExecutorService           :一个线程池管理者,其实现类有多种,我会介绍一部分。我们能把Runnable,Callable提交到池中让其调度。  
  3. Semaphore                 :一个计数信号量  
  4. ReentrantLock             :一个可重入的互斥锁定 Lock,功能类似synchronized,但要强大的多。  
  5. Future                    :是与Runnable,Callable进行交互的接口,比如一个线程执行结束后取返回的结果等等,还提供了cancel终止线程。  
  6. BlockingQueue             :阻塞队列。  
  7. CompletionService         : ExecutorService的扩展,可以获得线程执行结果的  
  8. CountDownLatch            :一个同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待。   
  9. CyclicBarrier             :一个同步辅助类,它允许一组线程互相等待,直到到达某个公共屏障点   
  10. Future                    :Future 表示异步计算的结果。  
  11. ScheduledExecutorService :一个 ExecutorService,可安排在给定的延迟后运行或定期执行的命令。  
  12.   
  13. 接下来逐一介绍  

 

Executors主要方法说明
newFixedThreadPool固定大小线程池)
创建一个可重用固定线程集合的线程池,以共享的无界队列方式来运行这些线程(只有要请求的过来,就会在一个队列里等待执行)。如果在关闭前的执行期间由于失败而导致任何线程终止,那么一个新线程将代替它执行后续的任务(如果需要)。

newCachedThreadPool(无界线程池,可以进行自动线程回收)
创建一个可根据需要创建新线程的线程池,但是在以前构造的线程可用时将重用它们。对于执行很多短期异步任务的程序而言,这些线程池通常可提高程序性能。调用 execute 将重用以前构造的线程(如果线程可用)。如果现有线程没有可用的,则创建一个新线程并添加到池中。终止并从缓存中移除那些已有 60 秒钟未被使用的线程。因此,长时间保持空闲的线程池不会使用任何资源。注意,可以使用 ThreadPoolExecutor 构造方法创建具有类似属性但细节不同(例如超时参数)的线程池。

newSingleThreadExecutor(单个后台线程)
创建一个使用单个 worker 线程的 Executor,以无界队列方式来运行该线程。(注意,如果因为在关闭前的执行期间出现失败而终止了此单个线程,那么如果需要,一个新线程将代替它执行后续的任务)。可保证顺序地执行各个任务,并且在任意给定的时间不会有多个线程是活动的。与其他等效的 newFixedThreadPool(1) 不同,可保证无需重新配置此方法所返回的执行程序即可使用其他的线程。

这些方法返回的都是ExecutorService对象,这个对象可以理解为就是一个线程池。
这个线程池的功能还是比较完善的。可以提交任务submit()可以结束线程池shutdown()。

Java代码  收藏代码
  1. import java.util.concurrent.ExecutorService;  
  2. import java.util.concurrent.Executors;  
  3.   
  4. public class MyExecutor extends Thread {  
  5. private int index;  
  6. public MyExecutor(int i){  
  7.     this.index=i;  
  8. }  
  9. public void run(){  
  10.     try{  
  11.      System.out.println("["+this.index+"] start....");  
  12.      Thread.sleep((int)(Math.random()*1000));  
  13.      System.out.println("["+this.index+"] end.");  
  14.     }  
  15.     catch(Exception e){  
  16.      e.printStackTrace();  
  17.     }  
  18. }  
  19.   
  20. public static void main(String args[]){  
  21.     ExecutorService service=Executors.newFixedThreadPool(4);  
  22.     for(int i=0;i<10;i++){  
  23.      service.execute(new MyExecutor(i));  
  24.      //service.submit(new MyExecutor(i));  
  25.     }  
  26.     System.out.println("submit finish");  
  27.     service.shutdown();  
  28. }  
  29. }  

 

虽然打印了一些信息,但是看的不是非常清晰,这个线程池是如何工作的,我们来将休眠的时间调长10倍。
Thread.sleep((int)(Math.random()*10000));

再来看,会清楚看到只能执行4个线程。当执行完一个线程后,才会又执行一个新的线程,也就是说,我们将所有的线程提交后,线程池会等待执行完最后shutdown。我们也会发现,提交的线程被放到一个“无界队列里”。这是一个有序队列(BlockingQueue,这个下面会说到)。

另外它使用了Executors的静态函数生成一个固定的线程池,顾名思义,线程池的线程是不会释放的,即使它是Idle。
这就会产生性能问题,比如如果线程池的大小为200,当全部使用完毕后,所有的线程会继续留在池中,相应的内存和线程切换(while(true)+sleep循环)都会增加。
如果要避免这个问题,就必须直接使用ThreadPoolExecutor()来构造。可以像通用的线程池一样设置“最大线程数”、“最小线程数”和“空闲线程keepAlive的时间”。


这个就是线程池基本用法。

Semaphore
一个计数信号量。从概念上讲,信号量维护了一个许可集合。如有必要,在许可可用前会阻塞每一个 acquire(),然后再获取该许可。每个 release() 添加一个许可,从而可能释放一个正在阻塞的获取者。但是,不使用实际的许可对象,Semaphore 只对可用许可的号码进行计数,并采取相应的行动。

Semaphore 通常用于限制可以访问某些资源(物理或逻辑的)的线程数目。例如,下面的类使用信号量控制对内容池的访问:

这里是一个实际的情况,大家排队上厕所,厕所只有两个位置,来了10个人需要排队。

Java代码  收藏代码
  1. import java.util.concurrent.ExecutorService;  
  2. import java.util.concurrent.Executors;  
  3. import java.util.concurrent.Semaphore;  
  4.   
  5. public class MySemaphore extends Thread {  
  6. Semaphore position;  
  7. private int id;  
  8. public MySemaphore(int i,Semaphore s){  
  9.     this.id=i;  
  10.     this.position=s;  
  11. }  
  12.   
  13. public void run(){  
  14.     try{  
  15.      if(position.availablePermits()>0){  
  16.       System.out.println("顾客["+this.id+"]进入厕所,有空位");  
  17.      }  
  18.      else{  
  19.       System.out.println("顾客["+this.id+"]进入厕所,没空位,排队");  
  20.      }  
  21.      position.acquire();  
  22.      System.out.println("顾客["+this.id+"]获得坑位");  
  23.      Thread.sleep((int)(Math.random()*1000));  
  24.      System.out.println("顾客["+this.id+"]使用完毕");  
  25.      position.release();  
  26.     }  
  27.     catch(Exception e){  
  28.      e.printStackTrace();  
  29.     }  
  30. }  
  31. public static void main(String args[]){  
  32.     ExecutorService list=Executors.newCachedThreadPool();  
  33.     Semaphore position=new Semaphore(2);  
  34.     for(int i=0;i<10;i++){  
  35.      list.submit(new MySemaphore(i+1,position));  
  36.     }  
  37.     list.shutdown();  
  38.     position.acquireUninterruptibly(2);  
  39.     System.out.println("使用完毕,需要清扫了");  
  40.     position.release(2);  
  41. }  
  42. }  

  

ReentrantLock
一个可重入的互斥锁定 Lock,它具有与使用 synchronized 方法和语句所访问的隐式监视器锁定相同的一些基本行为和语义,但功能更强大。

ReentrantLock 将由最近成功获得锁定,并且还没有释放该锁定的线程所拥有。当锁定没有被另一个线程所拥有时,调用 lock 的线程将成功获取该锁定并返回。如果当前线程已经拥有该锁定,此方法将立即返回。可以使用 isHeldByCurrentThread() 和 getHoldCount() 方法来检查此情况是否发生。

此类的构造方法接受一个可选的公平参数。
当设置为 true时,在多个线程的争用下,这些锁定倾向于将访问权授予等待时间最长的线程。否则此锁定将无法保证任何特定访问顺序。
与采用默认设置(使用不公平锁定)相比,使用公平锁定的程序在许多线程访问时表现为很低的总体吞吐量(即速度很慢,常常极其慢),但是在获得锁定和保证锁定分配的均衡性时差异较小。不过要注意的是,公平锁定不能保证线程调度的公平性。因此,使用公平锁定的众多线程中的一员可能获得多倍的成功机会,这种情况发生在其他活动线程没有被处理并且目前并未持有锁定时。还要注意的是,未定时的 tryLock 方法并没有使用公平设置。因为即使其他线程正在等待,只要该锁定是可用的,此方法就可以获得成功。

建议总是 立即实践,使用 try 块来调用 lock,在之前/之后的构造中,最典型的代码如下:

Java代码  收藏代码
  1. class X {  
  2.     private final ReentrantLock lock = new ReentrantLock();  
  3.     // ...  
  4.   
  5.     public void m() {   
  6.       lock.lock(); // block until condition holds  
  7.       try {  
  8.         // ... method body  
  9.       } finally {  
  10.         lock.unlock()  
  11.       }  
  12.     }  
  13. }  

 

我的例子:

Java代码  收藏代码
  1. import java.util.concurrent.ExecutorService;  
  2. import java.util.concurrent.Executors;  
  3. import java.util.concurrent.locks.ReentrantLock;  
  4.   
  5. public class MyReentrantLock extends Thread{  
  6. TestReentrantLock lock;  
  7. private int id;  
  8. public MyReentrantLock(int i,TestReentrantLock test){  
  9.     this.id=i;  
  10.     this.lock=test;  
  11. }  
  12.   
  13. public void run(){  
  14.     lock.print(id);  
  15. }  
  16.   
  17. public static void main(String args[]){  
  18.     ExecutorService service=Executors.newCachedThreadPool();  
  19.     TestReentrantLock lock=new TestReentrantLock();  
  20.     for(int i=0;i<10;i++){  
  21.      service.submit(new MyReentrantLock(i,lock));  
  22.     }  
  23.     service.shutdown();  
  24. }  
  25. }  
  26. class TestReentrantLock{  
  27. private ReentrantLock lock=new ReentrantLock();  
  28. public void print(int str){  
  29.     try{  
  30.      lock.lock();  
  31.      System.out.println(str+"获得");  
  32.      Thread.sleep((int)(Math.random()*1000));  
  33.     }  
  34.     catch(Exception e){  
  35.      e.printStackTrace();  
  36.     }  
  37.     finally{  
  38.      System.out.println(str+"释放");  
  39.      lock.unlock();  
  40.     }  
  41. }  
  42. }  

 

BlockingQueue
支持两个附加操作的 Queue,这两个操作是:检索元素时等待队列变为非空,以及存储元素时等待空间变得可用。

BlockingQueue 不接受 null 元素。试图 add、put 或 offer 一个 null 元素时,某些实现会抛出 NullPointerException。null 被用作指示 poll 操作失败的警戒值。

BlockingQueue 可以是限定容量的。它在任意给定时间都可以有一个 remainingCapacity,超出此容量,便无法无阻塞地 put 额外的元素。
没有任何内部容量约束的 BlockingQueue 总是报告 Integer.MAX_VALUE 的剩余容量。

BlockingQueue 实现主要用于生产者-使用者队列,但它另外还支持 Collection 接口。因此,举例来说,使用 remove(x) 从队列中移除任意一个元素是有可能的。
然而,这种操作通常不 会有效执行,只能有计划地偶尔使用,比如在取消排队信息时。

BlockingQueue 实现是线程安全的。所有排队方法都可以使用内部锁定或其他形式的并发控制来自动达到它们的目的。
然而,大量的 Collection 操作(addAll、containsAll、retainAll 和 removeAll)没有 必要自动执行,除非在实现中特别说明。
因此,举例来说,在只添加了 c 中的一些元素后,addAll(c) 有可能失败(抛出一个异常)。

BlockingQueue 实质上不 支持使用任何一种“close”或“shutdown”操作来指示不再添加任何项。
这种功能的需求和使用有依赖于实现的倾向。例如,一种常用的策略是:对于生产者,插入特殊的 end-of-stream 或 poison 对象,并根据使用者获取这些对象的时间来对它们进行解释。

下面的例子演示了这个阻塞队列的基本功能。

Java代码  收藏代码
  1. import java.util.concurrent.BlockingQueue;  
  2. import java.util.concurrent.ExecutorService;  
  3. import java.util.concurrent.Executors;  
  4. import java.util.concurrent.LinkedBlockingQueue;  
  5.   
  6. public class MyBlockingQueue extends Thread {  
  7. public static BlockingQueue<String> queue = new LinkedBlockingQueue<String>(3);  
  8.   
  9. private int index;  
  10.   
  11. public MyBlockingQueue(int i) {  
  12.    this.index = i;  
  13. }  
  14.   
  15. public void run() {  
  16.    try {  
  17.     queue.put(String.valueOf(this.index));  
  18.     System.out.println("{" + this.index + "} in queue!");  
  19.    } catch (Exception e) {  
  20.     e.printStackTrace();  
  21.    }  
  22. }  
  23.   
  24. public static void main(String args[]) {  
  25.    ExecutorService service = Executors.newCachedThreadPool();  
  26.    for (int i = 0; i < 10; i++) {  
  27.     service.submit(new MyBlockingQueue(i));  
  28.    }  
  29.    Thread thread = new Thread() {  
  30.     public void run() {  
  31.      try {  
  32.       while (true) {  
  33.        Thread.sleep((int) (Math.random() * 1000));  
  34.        if(MyBlockingQueue.queue.isEmpty())  
  35.         break;  
  36.        String str = MyBlockingQueue.queue.take();  
  37.        System.out.println(str + " has take!");  
  38.       }  
  39.      } catch (Exception e) {  
  40.       e.printStackTrace();  
  41.      }  
  42.     }  
  43.    };  
  44.    service.submit(thread);  
  45.    service.shutdown();  
  46. }  
  47. }  

 
CompletionService

将生产新的异步任务与使用已完成任务的结果分离开来的服务。生产者 submit 执行的任务。使用者 take 已完成的任务,
并按照完成这些任务的顺序处理它们的结果。例如,CompletionService 可以用来管理异步 IO ,执行读操作的任务作为程序或系统的一部分提交,
然后,当完成读操作时,会在程序的不同部分执行其他操作,执行操作的顺序可能与所请求的顺序不同。

通常,CompletionService 依赖于一个单独的 Executor 来实际执行任务,在这种情况下,
CompletionService 只管理一个内部完成队列。ExecutorCompletionService 类提供了此方法的一个实现。

 

Java代码  收藏代码
  1. import java.util.concurrent.Callable;  
  2. import java.util.concurrent.CompletionService;  
  3. import java.util.concurrent.ExecutorCompletionService;  
  4. import java.util.concurrent.ExecutorService;  
  5. import java.util.concurrent.Executors;  
  6.   
  7. public class MyCompletionService implements Callable<String> {  
  8. private int id;  
  9.   
  10. public MyCompletionService(int i){  
  11.    this.id=i;  
  12. }  
  13. public static void main(String[] args) throws Exception{  
  14.    ExecutorService service=Executors.newCachedThreadPool();  
  15.    CompletionService<String> completion=new ExecutorCompletionService<String>(service);  
  16.    for(int i=0;i<10;i++){  
  17.     completion.submit(new MyCompletionService(i));  
  18.    }  
  19.    for(int i=0;i<10;i++){  
  20.     System.out.println(completion.take().get());  
  21.    }  
  22.    service.shutdown();  
  23. }  
  24. public String call() throws Exception {  
  25.    Integer time=(int)(Math.random()*1000);  
  26.    try{  
  27.     System.out.println(this.id+" start");  
  28.     Thread.sleep(time);  
  29.     System.out.println(this.id+" end");  
  30.    }  
  31.    catch(Exception e){  
  32.     e.printStackTrace();  
  33.    }  
  34.    return this.id+":"+time;  
  35. }  
  36. }  

 
CountDownLatch


一个同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待。

用给定的计数 初始化 CountDownLatch。由于调用了 countDown() 方法,所以在当前计数到达零之前,await 方法会一直受阻塞。
之后,会释放所有等待的线程,await 的所有后续调用都将立即返回。这种现象只出现一次——计数无法被重置。如果需要重置计数,请考虑使用 CyclicBarrier。

CountDownLatch 是一个通用同步工具,它有很多用途。将计数 1 初始化的 CountDownLatch 用作一个简单的开/关锁存器,
或入口:在通过调用 countDown() 的线程打开入口前,所有调用 await 的线程都一直在入口处等待。
用 N 初始化的 CountDownLatch 可以使一个线程在 N 个线程完成某项操作之前一直等待,或者使其在某项操作完成 N 次之前一直等待。

CountDownLatch 的一个有用特性是,它不要求调用 countDown 方法的线程等到计数到达零时才继续,
而在所有线程都能通过之前,它只是阻止任何线程继续通过一个 await。
一下的例子是别人写的,非常形象。

Java代码  收藏代码
  1. import java.util.concurrent.CountDownLatch;  
  2. import java.util.concurrent.ExecutorService;  
  3. import java.util.concurrent.Executors;  
  4.   
  5. public class TestCountDownLatch {  
  6. public static void main(String[] args) throws InterruptedException {  
  7.    // 开始的倒数锁  
  8.    final CountDownLatch begin = new CountDownLatch(1);  
  9.    // 结束的倒数锁  
  10.    final CountDownLatch end = new CountDownLatch(10);  
  11.    // 十名选手  
  12.    final ExecutorService exec = Executors.newFixedThreadPool(10);  
  13.     
  14.    for (int index = 0; index < 10; index++) {  
  15.     final int NO = index + 1;  
  16.     Runnable run = new Runnable() {  
  17.      public void run() {  
  18.       try {  
  19.        begin.await();//一直阻塞  
  20.        Thread.sleep((long) (Math.random() * 10000));  
  21.        System.out.println("No." + NO + " arrived");  
  22.       } catch (InterruptedException e) {  
  23.       } finally {  
  24.        end.countDown();  
  25.       }  
  26.      }  
  27.     };  
  28.     exec.submit(run);  
  29.    }  
  30.    System.out.println("Game Start");  
  31.    begin.countDown();  
  32.    end.await();  
  33.    System.out.println("Game Over");  
  34.    exec.shutdown();  
  35. }  
  36. }  

 

CountDownLatch最重要的方法是countDown()和await(),前者主要是倒数一次,后者是等待倒数到0,如果没有到达0,就只有阻塞等待了。


CyclicBarrier

一个同步辅助类,它允许一组线程互相等待,直到到达某个公共屏障点 (common barrier point)。
在涉及一组固定大小的线程的程序中,这些线程必须不时地互相等待,此时 CyclicBarrier 很有用。因为该 barrier 在释放等待线程后可以重用,所以称它为循环 的 barrier。

CyclicBarrier 支持一个可选的 Runnable 命令,在一组线程中的最后一个线程到达之后(但在释放所有线程之前),
该命令只在每个屏障点运行一次。若在继续所有参与线程之前更新共享状态,此屏障操作 很有用。

示例用法:下面是一个在并行分解设计中使用 barrier 的例子,很经典的旅行团例子:

Java代码  收藏代码
  1. import java.text.SimpleDateFormat;  
  2. import java.util.Date;  
  3. import java.util.concurrent.BrokenBarrierException;  
  4. import java.util.concurrent.CyclicBarrier;  
  5. import java.util.concurrent.ExecutorService;  
  6. import java.util.concurrent.Executors;  
  7. public class TestCyclicBarrier {  
  8.   // 徒步需要的时间: Shenzhen, Guangzhou, Shaoguan, Changsha, Wuhan  
  9.   private static int[] timeWalk = { 58151510 };  
  10.   // 自驾游  
  11.   private static int[] timeSelf = { 13445 };  
  12.   // 旅游大巴  
  13.   private static int[] timeBus = { 24667 };  
  14.     
  15.   static String now() {  
  16.      SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");  
  17.      return sdf.format(new Date()) + ": ";  
  18.   }  
  19.   
  20.   static class Tour implements Runnable {  
  21.      private int[] times;  
  22.      private CyclicBarrier barrier;  
  23.      private String tourName;  
  24.      public Tour(CyclicBarrier barrier, String tourName, int[] times) {  
  25.        this.times = times;  
  26.        this.tourName = tourName;  
  27.        this.barrier = barrier;  
  28.      }  
  29.      public void run() {  
  30.        try {  
  31.          Thread.sleep(times[0] * 1000);  
  32.          System.out.println(now() + tourName + " Reached Shenzhen");  
  33.          barrier.await();  
  34.          Thread.sleep(times[1] * 1000);  
  35.          System.out.println(now() + tourName + " Reached Guangzhou");  
  36.          barrier.await();  
  37.          Thread.sleep(times[2] * 1000);  
  38.          System.out.println(now() + tourName + " Reached Shaoguan");  
  39.          barrier.await();  
  40.          Thread.sleep(times[3] * 1000);  
  41.          System.out.println(now() + tourName + " Reached Changsha");  
  42.          barrier.await();  
  43.          Thread.sleep(times[4] * 1000);  
  44.          System.out.println(now() + tourName + " Reached Wuhan");  
  45.          barrier.await();  
  46.        } catch (InterruptedException e) {  
  47.        } catch (BrokenBarrierException e) {  
  48.        }  
  49.      }  
  50.   }  
  51.   
  52.   public static void main(String[] args) {  
  53.      // 三个旅行团  
  54.      CyclicBarrier barrier = new CyclicBarrier(3);  
  55.      ExecutorService exec = Executors.newFixedThreadPool(3);  
  56.      exec.submit(new Tour(barrier, "WalkTour", timeWalk));  
  57.      exec.submit(new Tour(barrier, "SelfTour", timeSelf));  
  58. //当我们把下面的这段代码注释后,会发现,程序阻塞了,无法继续运行下去。  
  59.      exec.submit(new Tour(barrier, "BusTour", timeBus));  
  60.      exec.shutdown();  
  61.   }  
  62. }   

 

CyclicBarrier最重要的属性就是参与者个数,另外最要方法是await()。当所有线程都调用了await()后,就表示这些线程都可以继续执行,否则就会等待。

Future

Future 表示异步计算的结果。它提供了检查计算是否完成的方法,以等待计算的完成,并检索计算的结果。
计算完成后只能使用 get 方法来检索结果,如有必要,计算完成前可以阻塞此方法。取消则由 cancel 方法来执行。
还提供了其他方法,以确定任务是正常完成还是被取消了。一旦计算完成,就不能再取消计算。
如果为了可取消性而使用 Future但又不提供可用的结果,则可以声明 Future<?> 形式类型、并返回 null 作为基础任务的结果。

这个我们在前面CompletionService已经看到了,这个Future的功能,而且这个可以在提交线程的时候被指定为一个返回对象的。


ScheduledExecutorService

一个 ExecutorService,可安排在给定的延迟后运行或定期执行的命令。

schedule 方法使用各种延迟创建任务,并返回一个可用于取消或检查执行的任务对象。scheduleAtFixedRate 和 scheduleWithFixedDelay 方法创建并执行某些在取消前一直定期运行的任务。

用 Executor.execute(java.lang.Runnable) 和 ExecutorService 的 submit 方法所提交的命令,通过所请求的 0 延迟进行安排。
schedule 方法中允许出现 0 和负数延迟(但不是周期),并将这些视为一种立即执行的请求。

所有的 schedule 方法都接受相对 延迟和周期作为参数,而不是绝对的时间或日期。将以 Date 所表示的绝对时间转换成要求的形式很容易。
例如,要安排在某个以后的日期运行,可以使用:schedule(task, date.getTime() - System.currentTimeMillis(), TimeUnit.MILLISECONDS)。
但是要注意,由于网络时间同步协议、时钟漂移或其他因素的存在,因此相对延迟的期满日期不必与启用任务的当前 Date 相符。
Executors 类为此包中所提供的 ScheduledExecutorService 实现提供了便捷的工厂方法。

一下的例子也是网上比较流行的。

Java代码  收藏代码
  1. import static java.util.concurrent.TimeUnit.SECONDS;  
  2. import java.util.Date;  
  3. import java.util.concurrent.Executors;  
  4. import java.util.concurrent.ScheduledExecutorService;  
  5. import java.util.concurrent.ScheduledFuture;  
  6.   
  7. public class TestScheduledThread {  
  8. public static void main(String[] args) {  
  9.    final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(2);  
  10.    final Runnable beeper = new Runnable() {  
  11.     int count = 0;  
  12.   
  13.     public void run() {  
  14.      System.out.println(new Date() + " beep " + (++count));  
  15.     }  
  16.    };  
  17.    // 1秒钟后运行,并每隔2秒运行一次  
  18.    final ScheduledFuture beeperHandle = scheduler.scheduleAtFixedRate(beeper, 12, SECONDS);  
  19.    // 2秒钟后运行,并每次在上次任务运行完后等待5秒后重新运行  
  20.    final ScheduledFuture beeperHandle2 = scheduler.scheduleWithFixedDelay(beeper, 25, SECONDS);  
  21.    // 30秒后结束关闭任务,并且关闭Scheduler  
  22.    scheduler.schedule(new Runnable() {  
  23.     public void run() {  
  24.      beeperHandle.cancel(true);  
  25.      beeperHandle2.cancel(true);  
  26.      scheduler.shutdown();  
  27.     }  
  28.    }, 30, SECONDS);  
  29. }  
  30. }  

 

这样我们就把concurrent包下比较重要的功能都已经总结完了,希望对我们理解能有帮助。

<script type="text/javascript"></script>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值