0
点赞
收藏
分享

微信扫一扫

JAVA: Callable

西风白羽 2022-07-27 阅读 15


public interface Callable {
/**
* Computes a result, or throws an exception if unable to do so.
*
* @return computed result
* @throws Exception if unable to compute a result
*/
V call() throws Exception;
}


举报

相关推荐

0 条评论