扩展阅读
当前位置: 编程语言>java/jsp
java命名空间java.util.concurrent类scheduledthreadpoolexecutor的类成员方法: execute定义及介绍
发布时间:2014-2-17
本文导语:
execute
public void execute(runnable command)
使用所要求的零延迟执行命令。这在效果上等同于调用 schedule(command, 0, anyunit)。注意,对由 shutdownnow 所返回的队列和列表的检查将访问零延迟的 scheduledfuture,而不是 command 本身。
指定者...