Android 源码中的一个写法

来源:互联网 发布:ps做淘宝主图教程 编辑:程序博客网 时间:2024/05/11 20:13


这种写法


public interface RunnableFuture<V> extends Runnable, Future<V> {

    /**
     * Sets this Future to the result of its computation
     * unless it has been cancelled.
     */
    void run();
}
0 0
原创粉丝点击