Java核心技术卷二(第七版)( 英文版)中的多线程 中的Callables and Futures用计算机专业术语应该翻译成什么? Callables and Futures 为其中一个小节的标题

解决方案 »

  1.   

    帮Up一下。
    我觉得应该是个实现线程的新的类库接口,仅供参考。呵呵,我下了个E书还没来得及看;估计现在也没多少人能帮你解决呢,现在国内的都是第六版的。和你一起盼高人到来!
      

  2.   

    JDK 1.5引入的java.util.concurrent包
    这样的此没有翻译的必要,是Java里面的类,你直接写在那就行了。
      

  3.   

    我明白了Callables and Futures 都是接口 。public interface Callable<V>
    {
       V call() throws Exception;
    }The Future interface has the following methods:public interface Future<V>
    {
       V get() throws . . .;
       V get(long timeout, TimeUnit unit) throws . . .;
       void cancel(boolean mayInterrupt);
       boolean isCancelled();
       boolean isDone();
    }