1.ScheduledExecutorService的使用2.ScheduledExecutorService使用Callable延迟运行3.ScheduledThreadPoolExecutor使用Runnable延迟运行 1.ScheduledExecutorService的使用类ScheduledExecutorService的主要作用就是可以将定时任务与线程池功能结合使用。 2.ScheduledExecutorService使用Callable延迟运行本示例使用Callable接口进行任务延迟运行的实验, 具有返回值的功能 3.ScheduledThreadPoolExecutor使用Runnable延迟运行