新增了一个executors工厂类产生线程池,如下面几个方法
-publicstaticexecutorservicenewfixedthreadpool(intnthreads)
-publicstaticexecutorservicenewsinglethreadexecutor()这些方法的返回值是executorservice对象,该对象表示一个线程池,可以执行runnable对象或者callable对象代表的线程。它提供了如下方法:
-future<?>submit(runnabletask)
-<t>future<t>submit(callable<t>task)