的run
方法Runnable
有返回类型void
,不能返回值。但是,我想知道是否有任何解决方法。
我有这样的方法:
public class Endpoint {
public method() {
Runnable runcls = new RunnableClass();
runcls.run()
}
}
方法run
是这样的:
public class RunnableClass implements Runnable {
public JaxbResponse response;
public void run() {
int id = inputProxy.input(chain);
response = outputProxy.input();
}
}
我想response
访问method
. 这可能吗?