摘要:
Java的Executor框架 1,Executor接口 [java] view plain copy public interface Executor { void execute(Runnable command); } [java] view plain copy [java] view p 阅读全文
摘要:
源码非常简单,只有一个execute(Runnable command)回调接口 public interface Executor { /** * Executes the given command at some time in the future. The command * may ex 阅读全文