欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java Future 接口使用方法详解

程序员文章站 2024-03-04 23:29:12
java future 接口使用方法详解 在java中,如果需要设定代码执行的最长时间,即超时,可以用java线程池executorservice类配合future接口来...

java future 接口使用方法详解

在java中,如果需要设定代码执行的最长时间,即超时,可以用java线程池executorservice类配合future接口来实现。 future接口是java标准api的一部分,在java.util.concurrent包中。future接口是java线程future模式的实现,可以来进行异步计算。
future模式可以这样来描述:我有一个任务,提交给了future,future替我完成这个任务。期间我自己可以去做任何想做的事情。一段时间之后,我就便可以从future那儿取出结果。就相当于下了一张订货单,一段时间后可以拿着提订单来提货,这期间可以干别的任何事情。其中future 接口就是订货单,真正处理订单的是executor类,它根据future接口的要求来生产产品。
future接口提供方法来检测任务是否被执行完,等待任务执行完获得结果,也可以设置任务执行的超时时间。这个设置超时的方法就是实现java程序执行超时的关键。

future接口是一个泛型接口,严格的格式应该是future<v>,其中v代表了future执行的任务返回值的类型。 future接口的方法介绍如下:

  • boolean cancel (boolean mayinterruptifrunning) 取消任务的执行。参数指定是否立即中断任务执行,或者等等任务结束
  • boolean iscancelled () 任务是否已经取消,任务正常完成前将其取消,则返回 true
  • boolean isdone () 任务是否已经完成。需要注意的是如果任务正常终止、异常或取消,都将返回true
  • v get () throws interruptedexception, executionexception  等待任务执行结束,然后获得v类型的结果。interruptedexception 线程被中断异常, executionexception任务执行异常,如果任务被取消,还会抛出cancellationexception
  • v get (long timeout, timeunit unit) throws interruptedexception, executionexception, timeoutexception 同上面的get功能一样,多了设置超时时间。参数timeout指定超时时间,uint指定时间的单位,在枚举类timeunit中有相关的定义。如果计算超时,将抛出timeoutexception

future的实现类有java.util.concurrent.futuretask<v>即 javax.swing.swingworker<t,v>。通常使用futuretask来处理我们的任务。futuretask类同时又实现了runnable接口,所以可以直接提交给executor执行。使用futuretask实现超时执行的代码如下:

executorservice executor = executors.newsinglethreadexecutor();  
futuretask<string> future =  
    new futuretask<string>(new callable<string>() {//使用callable接口作为构造参数  
     public string call() {  
      //真正的任务在这里执行,这里的返回值类型为string,可以为任意类型  
    }});  
executor.execute(future);  
//在这里可以做别的任何事情  
try {  
  result = future.get(5000, timeunit.milliseconds); //取得结果,同时设置超时执行时间为5秒。同样可以用future.get(),不设置执行超时时间取得结果  
} catch (interruptedexception e) {  
  futuretask.cancel(true);  
} catch (executionexception e) {  
  futuretask.cancel(true);  
} catch (timeoutexception e) {  
  futuretask.cancel(true);  
} finally {  
  executor.shutdown();  
} 


executorservice executor = executors.newsinglethreadexecutor(); 
futuretask<string> future = 
    new futuretask<string>(new callable<string>() {//使用callable接口作为构造参数 
     public string call() { 
      //真正的任务在这里执行,这里的返回值类型为string,可以为任意类型 
    }}); 
executor.execute(future); 
//在这里可以做别的任何事情 
try { 
  result = future.get(5000, timeunit.milliseconds); //取得结果,同时设置超时执行时间为5秒。同样可以用future.get(),不设置执行超时时间取得结果 
} catch (interruptedexception e) { 
  futuretask.cancel(true); 
} catch (executionexception e) { 
  futuretask.cancel(true); 
} catch (timeoutexception e) { 
  futuretask.cancel(true); 
} finally { 
  executor.shutdown(); 
} 
  

 不直接构造future对象,也可以使用executorservice.submit方法来获得future对象,submit方法即支持以 callable接口类型,也支持runnable接口作为参数,具有很大的灵活性。使用示例如下:

executorservice executor = executors.newsinglethreadexecutor();  
futuretask<string> future = executor.submit(  
  new callable<string>() {//使用callable接口作为构造参数  
    public string call() {  
   //真正的任务在这里执行,这里的返回值类型为string,可以为任意类型  
  }});  
//在这里可以做别的任何事情  
//同上面取得结果的代码 


executorservice executor = executors.newsinglethreadexecutor(); 
futuretask<string> future = executor.submit( 
  new callable<string>() {//使用callable接口作为构造参数 
    public string call() { 
   //真正的任务在这里执行,这里的返回值类型为string,可以为任意类型 
  }}); 
//在这里可以做别的任何事情 
//同上面取得结果的代码 

  利用future接口实现程序执行超时大致用法就这么多,改天需要研究下future接口的内部实现,特别是设定执行超时的实现。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!