java创建线程池的四种方式_线程池对象的创建方式

java创建线程池的四种方式_线程池对象的创建方式Java通过Executors提供四种线程池,分别为:newCachedThreadPool创建一个可缓存线程池,如果线程池长度超过处理需要,可灵活回收空闲线程,若无可回收,则新建线程。newFixedThreadPool创建一个定长线程池,可控制线程最大并发数,超出的线程会在队列中等待。newScheduledThreadPool创建一个定长线程池,支持定时及周期性任务执行。newSingl…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

Java通过Executors提供四种线程池,分别为:

newCachedThreadPool创建一个可缓存线程池,如果线程池长度超过处理需要,可灵活回收空闲线程,若无可回收,则新建线程。
newFixedThreadPool 创建一个定长线程池,可控制线程最大并发数,超出的线程会在队列中等待。
newScheduledThreadPool 创建一个定长线程池,支持定时及周期性任务执行。

newSingleThreadExecutor 创建一个单线程化的线程池,它只会用唯一的工作线程来执行任务,保证所有任务按照指定顺序(FIFO, LIFO, 优先级)执行。


线程池的作用:

线程池作用就是限制系统中执行线程的数量。
根 据系统的环境情况,可以自动或手动设置线程数量,达到运行的最佳效果;少了浪费了系统资源,多了造成系统拥挤效率不高。用线程池控制线程数量,其他线程排 队等候。一个任务执行完毕,再从队列的中取最前面的任务开始执行。若队列中没有等待进程,线程池的这一资源处于等待。当一个新任务需要运行时,如果线程池 中有等待的工作线程,就可以开始运行了;否则进入等待队列。

为什么要用线程池:

1.减少了创建和销毁线程的次数,每个工作线程都可以被重复利用,可执行多个任务。

2.可以根据系统的承受能力,调整线程池中工作线线程的数目,防止因为消耗过多的内存,而把服务器累趴下(每个线程需要大约1MB内存,线程开的越多,消耗的内存也就越大,最后死机)。

Java里面线程池的顶级接口是Executor,但是严格意义上讲Executor并不是一个线程池,而只是一个执行线程的工具。真正的线程池接口是ExecutorService。

比较重要的几个类:

ExecutorService: 真正的线程池接口。

ScheduledExecutorService: 能和Timer/TimerTask类似,解决那些需要任务重复执行的问题。

ThreadPoolExecutor: ExecutorService的默认实现。

ScheduledThreadPoolExecutor: 继承ThreadPoolExecutor的ScheduledExecutorService接口实现,周期性任务调度的类实现。

要配置一个线程池是比较复杂的,尤其是对于线程池的原理不是很清楚的情况下,很有可能配置的线程池不是较优的,因此在Executors类里面提供了一些静态工厂,生成一些常用的线程池。


newCachedThreadPool

  1. public static void main(String[] args) {  
  2.         ExecutorService cachedThreadPool = Executors.newCachedThreadPool();  
  3.         for (int i = 0; i < 10; i++) {  
  4.             final int index = i;  
  5.             try {  
  6.                 Thread.sleep(10);  
  7.             } catch (InterruptedException e) {  
  8.                 e.printStackTrace();  
  9.             }  
  10.             cachedThreadPool.execute(new Runnable() {  
  11.                 public void run() {  
  12.                     System.out.println(index);  
  13.                 }  
  14.             });  
  15.         }  
  16.     }

newFixedThreadPool

  1. public static void main(String[] args) {  
  2.         ExecutorService fixedThreadPool = Executors.newFixedThreadPool(3);  
  3.         for (int i = 0; i < 10; i++) {  
  4.             final int index = i;  
  5.             fixedThreadPool.execute(new Runnable() {  
  6.                 public void run() {  
  7.                     try {  
  8.                         System.out.println(index);  
  9.                         Thread.sleep(10);  
  10.                     } catch (InterruptedException e) {  
  11.                         e.printStackTrace();  
  12.                     }  
  13.                 }  
  14.             });  
  15.         }  
  16.     }  

定长线程池的大小最好根据系统资源进行设置。如Runtime.getRuntime().availableProcessors()


newScheduleThreadPool()


  1. public static void main(String[] args) {  
  2.         ScheduledExecutorService scheduledThreadPool = Executors.newScheduledThreadPool(5);  
  3.         for (int i = 0; i < 10; i++) {  
  4.             scheduledThreadPool.schedule(new Runnable() {  
  5.                 public void run() {  
  6.                     System.out.println(“delay 3 seconds”);  
  7.                 }  
  8.             }, 3, TimeUnit.SECONDS);  
  9.         }  
  10.   
  11.     } 


newSingleThreadExecutor

按顺序执行线程,某个时间段只能有一个线程存在,一个线程死掉,另一个线程会补上

  1. public static void main(String[] args) {  
  2.         ExecutorService singleThreadExecutor = Executors.newSingleThreadExecutor();  
  3.         for (int i = 0; i < 10; i++) {  
  4.             final int index = i;  
  5.             singleThreadExecutor.execute(new Runnable() {  
  6.                 public void run() {  
  7. /*                  System.out.println(index);*/  
  8.                     try {  
  9.                         System.out.println(index);  
  10.                         Thread.sleep(2000);  
  11.                     } catch (InterruptedException e) {  
  12.                         e.printStackTrace();  
  13.                     }  
  14.                 }  
  15.             });  
  16.         }  
  17.     }  

 线程池Demo 

package thread.demo.test;


import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;


class MyThread extends Thread{
	public void run(){
		System.out.println(Thread.currentThread().getName()+"is running");
	}
}


//class MyThread1 implements Runnable{
//	public void run(){
//		System.out.println("====");
//	}
//}




public class ThreadPoolDemo {


	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
//		ExecutorService pool=Executors.newFixedThreadPool(3);
		Thread t1=new MyThread();
		Thread t2=new MyThread();
		Thread t3=new MyThread();
		Thread t4=new MyThread();
		Thread t5=new MyThread();
//		pool.execute(t1);
//		pool.execute(t2);
//		pool.execute(t3);
//		pool.execute(t4);
//		pool.execute(t5);
//		pool.shutdown();
		
		/*
		 * output:
		 * pool-1-thread-2is running 
		 * pool-1-thread-3is running
		 * pool-1-thread-1is running
		 * pool-1-thread-3is running
		 * pool-1-thread-2is running
		 * 
		 */
		
		
//		ExecutorService  pool1=Executors.newCachedThreadPool();
//		pool1.execute(t1);
//		pool1.execute(t2);
//		pool1.execute(t3);
//		pool1.execute(t4);
//		pool1.execute(t5);
//		pool1.shutdown();
		/*
		 * output:
		 * pool-2-thread-2is running
		 * pool-2-thread-3is running
		 * pool-2-thread-1is running
		 * pool-2-thread-4is running
		 * pool-2-thread-5is running
		 */
		
		
//		ExecutorService pool2=Executors.newSingleThreadExecutor();
//		pool2.execute(t1);
//		pool2.execute(t2);
//		pool2.execute(t3);
//		pool2.execute(t4);
//		pool2.execute(t5);
//		pool2.shutdown();
		/*
		 * OutPut:
		 * pool-3-thread-1is running
		 * pool-3-thread-1is running
		 * pool-3-thread-1is running
		 * pool-3-thread-1is running
		 * pool-3-thread-1is running
		 */
		
		ExecutorService pool3=Executors.newScheduledThreadPool(1);
		pool3.execute(new Runnable(){
			public void run(){
				System.out.println(Thread.currentThread().getName()+"====");
			}
		});
		pool3.execute(new Runnable(){
			public void run(){
				System.out.println(Thread.currentThread().getName()+"~~~~");
			}
		});
		pool3.shutdown();
		/*
		 * output:
		 * pool-3-thread-1====
		 * pool-3-thread-1~~~~
		 */
	}


}

reference:点击打开链接,点击打开链接

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/188970.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 剑指Offer面试题:1.实现单例模式建议收藏

    一题目:实现单例模式Singleton只能生成一个实例的类是实现了Singleton(单例)模式的类型。由于设计模式在面向对象程序设计中起着举足轻重的作用,在面试过程中很多公司都喜欢问一些与设计模

    2021年12月19日
  • 人工智能 – 五子棋人机对战

    人工智能 – 五子棋人机对战人工智能 – 五子棋人机对战作者:jig    阅读人次:6635    文章来源:本站原创    发布时间:2007-7-12    网友评论(8)条 
    原帖及讨论:http://bbs.bccn.net/thread-154777-1-1.html
    */————————————————————————————–
    */出自:编程中国  http://www.

  • linux0.11_linux vim编辑器

    linux0.11_linux vim编辑器前言所有的UnixLike系统都会内建vi文书编辑器,其他的文书编辑器则不一定会存在。但是目前我们使用比较多的是vim编辑器。vim具有程序编辑的能力,可以主动的以字体颜色辨别语法的

  • 评论一下现有几个开源IM框架(Msn/QQ/Fetion/Gtalk…)[通俗易懂]

    评论一下现有几个开源IM框架(Msn/QQ/Fetion/Gtalk…)[通俗易懂]转载:http://www.cnblogs.com/zc22/archive/2010/05/30/1747300.html前言—————-这阵子,在集成通讯框架,由于不想

  • mutual information loss_munication

    mutual information loss_munication今天挺paperreading的时候,听到了最大化互信息,还不清楚互信息是个什么东东,google了一下,从http://en.wikipedia.org/wiki/Mutual_information摘过来了:    DefinitionofmutualinformationFormally,themutualinformationoftwod

  • centos安装python3详细教程[通俗易懂]

    centos安装python3详细教程[通俗易懂]centos7自带版本是python2.7如果要用的3.0以上的版本需要手动安装1、先查看系统python的位置在哪儿whereispythonpython2.7默认安装是在/usr/bin目录中,切换到/usr/bin/cd/usr/bin/llpython*从下面的图中我们可以看到,python指向的是python2,python2指向的是python2.7,因此我们可以装个python3,然后将python指向python3,然后python2指向python2.7,那么

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号