zoukankan      html  css  js  c++  java
  • java的Future使用方法

    首先,Future是一个接口,该接口用来返回异步的结果。

    package com.itbuluoge.mythread;
    
    import java.util.ArrayList;
    import java.util.concurrent.Callable;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.Future;
    import java.util.concurrent.TimeUnit;
    
    class TaskWithResult implements Callable<String>
    {
    
    	public String call() throws Exception {
    		// TODO Auto-generated method stub
    		Thread.sleep(1000);
    		return "OK";
    	}
    	
    }
    public class CallableDemo {
    
    	/**
    	 * @param args
    	 * @throws Exception 
    	 * @throws InterruptedException 
    	 */
    	public static void main(String[] args) throws InterruptedException, Exception {
    		// TODO Auto-generated method stub
    		ExecutorService exec=Executors.newCachedThreadPool();
    		Future<String> st=exec.submit(new TaskWithResult());
    		
    		/*同步结果,而且设置超时时间*/
    		System.out.println(st.get(10000, TimeUnit.MILLISECONDS));
    		System.out.println("over");
    		
    		
    	}
    
    }
    


    当中st.get(10000, TimeUnit.MILLISECONDS)是同步堵塞的。也就是说,会一直等待st的返回结果,在结果返回后。才会继续运行下去。

    输出结果



  • 相关阅读:
    静态网页
    css
    html
    数据分析器
    初步了解计算机
    如何导出数据库的数据词典
    阅读计划
    python之文件读写
    曾梦想仗剑走天涯,看世界的繁华
    python lambda匿名函数
  • 原文地址:https://www.cnblogs.com/bhlsheji/p/5316183.html
Copyright © 2011-2022 走看看