摘要:
BlockingQueue作为线程容器,可以为线程同步提供有力的保障,其主要用到的方法包括:[java]view plaincopyadd(Eo);//将指定的元素添加到此队列中(如果立即可行),在成功时返回true,其他情况则抛出IllegalStateException。drainTo(Col... 阅读全文
摘要:
ExecutorService接口继承了Executor接口,定义了一些生命周期的方法Java代码publicinterfaceExecutorServiceextendsExecutor{voidshutdown();ListshutdownNow();booleanisShutdown();bo... 阅读全文