作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我有一个 FutureTask<String> f,
我可以得到 Callable<String> c
在他的构造函数中使用的对象?
类似于:
Callable<String> c = f.getCallable();
最佳答案
不能使用 FutureTask
本身,但您可以根据自己的需要扩展它:
class YourFutureTask extends FutureTask<String> {
private Callable<String> callable;
public YourFutureTask(Callable<String> callable){
super(callable);
this.callable = callable;
}
public Callable<String> getCallable(){
return callable;
}
}
关于java - 有没有办法从 FutureTask 中获取 Callable ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30954183/
我是一名优秀的程序员,十分优秀!