java Runnable run()方法返回一个值

时间:2012-12-03 13:39:39

标签: java runnable

根据java doc,Runnable方法void run()无法返回值。我不知道是否有任何解决方法。

实际上我有一种方法叫:

public class Endpoint{
    public method_(){
       RunnableClass runcls = new RunnableClass();
       runcls.run()
    }
}

其中方法run()是:

public class RunnableClass implements Runnable{

    public jaxbResponse response;
        public void run() {
            int id;
            id =inputProxy.input(chain);
            response = outputProxy.input();

        }
}

我想在response中访问method_()变量吗?这可能吗?

8 个答案:

答案 0 :(得分:54)

使用Callable<V>代替Runnable界面。

示例:

public static void main(String args[]) throws Exception {
    ExecutorService pool = Executors.newFixedThreadPool(3);
    Set<Future<Integer>> set = new HashSet<Future<Integer>>();
    for (String word: args) {
      Callable<Integer> callable = new WordLengthCallable(word);
      Future<Integer> future = pool.submit(callable);
      set.add(future);
    }
    int sum = 0;
    for (Future<Integer> future : set) {
      sum += future.get();
    }
    System.out.printf("The sum of lengths is %s%n", sum);
    System.exit(sum);
  }

在此示例中,您还需要实现WordLengthCallable类,该类实现Callable接口。

答案 1 :(得分:14)

public void check() {
    ExecutorService executor = Executors.newSingleThreadExecutor();
    Future<Integer> result = executor.submit(new Callable<Integer>() {
        public Integer call() throws Exception {
            return 10;
        }
    });

    try {
        int returnValue = result.get();
    } catch (Exception exception) {
       //handle exception
    }
}

答案 2 :(得分:7)

查看Callable课程。这通常是通过executor service

提交的

它可以返回线程完成时返回的未来对象

答案 3 :(得分:3)

如果您向RunnableClass添加字段,则可以在run中进行设置,并在method_中阅读。但是,Runnable是一个穷人(Java关键字)interface因为它没有告诉你关于(概念)接口的任何信息(只有API文档的有用行:“方法的一般契约{{ 1}}它可能会采取任何行动。“)。使用更有意义的界面(可能会返回一些东西)要好得多。

答案 4 :(得分:2)

是的,有解决方法。只需使用队列并输入您想要返回的值。并从另一个线程中获取此值。

public class RunnableClass implements Runnable{

        private final BlockingQueue<jaxbResponse> queue;


        public RunnableClass(BlockingQueue<jaxbResponse> queue) {
            this.queue = queue;
        }

        public void run() {
            int id;
            id =inputProxy.input(chain);
            queue.put(outputProxy.input());
        }
    }


    public class Endpoint{
        public method_(){
            BlockingQueue<jaxbResponse> queue = new LinkedBlockingQueue<>();

            RunnableClass runcls = new RunnableClass(queue);
            runcls.run()

            jaxbResponse response = queue.take(); // waits until takes value from queue
        }
    }

答案 5 :(得分:1)

一种方法是,我们必须使用Future - Callable方法。

另一种方法是,您可以保留对象

,而不是返回值

示例:

class MainThread {
    public void startMyThread() {
        Object requiredObject = new Object(); //Map/List/OwnClass
        Thread myThread = new Thread(new RunnableObject(requiredObject)).start();
        myThread.join();

        System.out.println(requiredObject.getRequiredValue());    
    }
}



class RunnableObject implements Runnable {
    private Object requiredObject;

    public RunnableObject(Object requiredObject) {
        this.requiredObject = requiredObject;
    }

    public void run() {
        requiredObject.setRequiredValue(xxxxx);
    }
}

因为对象范围在同一范围内,所以您可以将对象传递给线程并可以在主范围内检索。但是,最重要的是,我们必须使用join()方法。因为主要范围应该等待线程完成其任务。

对于多线程情况,您可以使用List / Map来保存线程中的值。

答案 6 :(得分:0)

看一下callable interface,或许这可以满足您的需求。您还可以通过调用run()方法中的setter方法来尝试获取响应字段的值

public void run() {
    int id;
    id =inputProxy.input(chain);
    response = outputProxy.input();
    OuterClass.setResponseData(response);

}

答案 7 :(得分:0)

尝试以下

public abstract class ReturnRunnable<T> implements Runnable {

    public abstract T runForResult();

    @Override
    public void run() {
        runForResult();
    }
}