测试

来源:互联网 发布:mac apache 无法访问 编辑:程序博客网 时间:2024/06/18 12:31
    public Future<?> submit(Runnable task) {        if (task == null) throw new NullPointerException();        RunnableFuture<Void> ftask = newTaskFor(task, null);        execute(ftask);        return ftask;    }

0 0