标签:exec 系统 executors 能力 限制 空闲 其他 ice 大小
限制系统中执行线程的数量
做法:使用线程池控制线程数量,其他线程排队等候。
Executors类提供了一些工厂方法:
创建一个固定大小的线程池
...
ExecutorService threadPool = Executors.newFixedThreadPool(30);//创建具有30个线程的线程池
Runnable r1 = new Runable(){
public void run(){
//线程体
}
};
threadPool.execute(r1);//将任务交给线程池,其会分配空闲线程来运行这个任务。
...
标签:exec 系统 executors 能力 限制 空闲 其他 ice 大小
原文地址:https://www.cnblogs.com/morninglight/p/10339711.html