线程池的作用:
线程池作用就是限制系统中执行线程的数量。
根据系统的环境情况,可以自动或手动设置线程数量,达到运行的最佳效果;少了浪费了系统资源,多了造成系统拥挤效率不高。用线程池控制线程数量,其他线程排队等候。一个任务执行完毕,再从队列的中取最前面的任务开始执行。若队列中没有等待进程,线程池的这一资源处于等待。当一个新任务需要运行时,如果线程池中有等待的工作线程,就可以开始运行了;否则进入等待队列。
java中常用线程池
单线程线程池 Executors.newSingleThreadExecutor()
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class Chi {
public static void main(String[] args) {
/*没有线程池的写法
Runnable r = new MyRunnable();
Thread t = new Thread(r);
t.start();*/
ExecutorService e =Executors.newSingleThreadExecutor();//创建一个单线程的线程池
e.submit(new MyRunnable());
e.submit(new MyRunnable());
e.submit(new MyRunnable());
e.submit(new MyRunnable());
e.submit(new MyRunnable());
e.submit(new MyRunnable());
e.shutdown();
}
}
class MyRunnable implements Runnable{
@Override
public void run() {
System.out.println("给我一个线程:"+Thread.currentThread().getName());
try {
System.out.println("线程开始消耗资源"+Thread.currentThread().getName());
Thread.sleep(2000);
System.out.println("线程使用完毕"+Thread.currentThread().getName());
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("归还到线程池中"+Thread.currentThread().getName());
}
}
运行结果
给我一个线程:pool-1-thread-1
线程开始消耗资源pool-1-thread-1
线程使用完毕pool-1-thread-1
归还到线程池中pool-1-thread-1
给我一个线程:pool-1-thread-1
线程开始消耗资源pool-1-thread-1
线程使用完毕pool-1-thread-1
归还到线程池中pool-1-thread-1
给我一个线程:pool-1-thread-1
线程开始消耗资源pool-1-thread-1
线程使用完毕pool-1-thread-1
归还到线程池中pool-1-thread-1
给我一个线程:pool-1-thread-1
线程开始消耗资源pool-1-thread-1
线程使用完毕pool-1-thread-1
归还到线程池中pool-1-thread-1
给我一个线程:pool-1-thread-1
线程开始消耗资源pool-1-thread-1
线程使用完毕pool-1-thread-1
归还到线程池中pool-1-thread-1
给我一个线程:pool-1-thread-1
线程开始消耗资源pool-1-thread-1
线程使用完毕pool-1-thread-1
归还到线程池中pool-1-thread-1
创建一个固定长度的线程池 Executors.newFixedThreadPool()
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class Chi {
public static void main(String[] args) {
/*没有线程池的写法
Runnable r = new MyRunnable();
Thread t = new Thread(r);
t.start();*/
ExecutorService e =Executors.newFixedThreadPool(2);//创建一个包含两个线程的线程池
Runnable r = new MyRunnable();
e.submit(r);//获取线程池中的某一个线程对象,然后调用runnable接口中的run方法
e.submit(r);
e.submit(r);
e.submit(r);//注意run方法运行完,线程中的线程并不消耗,而是归还到池中
e.shutdown();
}
}
class MyRunnable implements Runnable{
@Override
public void run() {
System.out.println("给我一个线程:"+Thread.currentThread().getName());
try {
System.out.println("线程开始消耗资源"+Thread.currentThread().getName());
Thread.sleep(2000);
System.out.println("线程使用完毕"+Thread.currentThread().getName());
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("归还到线程池中"+Thread.currentThread().getName());
}
}
运行结果
给我一个线程:pool-1-thread-1
给我一个线程:pool-1-thread-2
线程开始消耗资源pool-1-thread-1
线程开始消耗资源pool-1-thread-2
线程使用完毕pool-1-thread-1
归还到线程池中pool-1-thread-1
线程使用完毕pool-1-thread-2
给我一个线程:pool-1-thread-1
线程开始消耗资源pool-1-thread-1
归还到线程池中pool-1-thread-2
给我一个线程:pool-1-thread-2
线程开始消耗资源pool-1-thread-2
线程使用完毕pool-1-thread-1
归还到线程池中pool-1-thread-1
线程使用完毕pool-1-thread-2
归还到线程池中pool-1-thread-2
创建一个可缓存的线程池
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class Chi {
public static void main(String[] args) {
/*没有线程池的写法
Runnable r = new MyRunnable();
Thread t = new Thread(r);
t.start();*/
ExecutorService e =Executors.newCachedThreadPool();
Runnable r = new MyRunnable();
e.submit(r);//获取线程池中的某一个线程对象,然后调用runnable接口中的run方法
e.submit(r);
e.submit(r);
e.submit(r);//注意run方法运行完,线程中的线程并不消耗,而是归还到池中
e.shutdown();
}
}
class MyRunnable implements Runnable{
@Override
public void run() {
System.out.println("给我一个线程:"+Thread.currentThread().getName());
try {
System.out.println("线程开始消耗资源"+Thread.currentThread().getName());
Thread.sleep(2000);
System.out.println("线程使用完毕"+Thread.currentThread().getName());
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("归还到线程池中"+Thread.currentThread().getName());
}
}
运行结果
给我一个线程:pool-1-thread-1
给我一个线程:pool-1-thread-4
给我一个线程:pool-1-thread-3
给我一个线程:pool-1-thread-2
线程开始消耗资源pool-1-thread-3
线程开始消耗资源pool-1-thread-4
线程开始消耗资源pool-1-thread-1
线程开始消耗资源pool-1-thread-2
线程使用完毕pool-1-thread-2
线程使用完毕pool-1-thread-3
线程使用完毕pool-1-thread-4
线程使用完毕pool-1-thread-1
归还到线程池中pool-1-thread-4
归还到线程池中pool-1-thread-2
归还到线程池中pool-1-thread-3
归还到线程池中pool-1-thread-1
创建一个可缓存并且可以周期性执行任务的线程池
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
public class Chi {
public static void main(String[] args) {
/*没有线程池的写法
Runnable r = new MyRunnable();
Thread t = new Thread(r);
t.start();*/
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
ScheduledThreadPoolExecutor e = new ScheduledThreadPoolExecutor(3);//参数表示线程容量
System.out.println(simpleDateFormat.format(new Date()));
// 但是如果执行任务时间大约2s则不会并发执行后续任务将会延迟。
ScheduledFuture<?> resultFuture = e.scheduleAtFixedRate(new MyRunnable(), 0, 2000, TimeUnit.MILLISECONDS);//第一个参数任务,第二个参数表示执行任务前等待的时间,第三个参数表示任务启动间隔时间,第四参数表示时间单位
e.scheduleAtFixedRate(new MyRunnable1(), 0, 2000, TimeUnit.MILLISECONDS);//第一个参数任务,第二个参数表示执行任务前等待的时间,第三个参数表示任务启动间隔时间,第四参数表示时间单位
// // 由于是定时任务,一直不会返回
//Object object = resultFuture.get();
}
}
class MyRunnable implements Runnable{
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
@Override
public void run() {
System.out.println(Thread.currentThread().getName()+"给我一个线程:"+simpleDateFormat.format(new Date()));
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
class MyRunnable1 implements Runnable{
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
@Override
public void run() {
System.out.println(Thread.currentThread().getName()+"给我一个线程1:"+simpleDateFormat.format(new Date()));
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
运行结果
2018-03-17 13:48:05
pool-1-thread-1给我一个线程:2018-03-17 13:48:05
pool-1-thread-2给我一个线程1:2018-03-17 13:48:05
pool-1-thread-1给我一个线程:2018-03-17 13:48:07
pool-1-thread-1给我一个线程:2018-03-17 13:48:09
pool-1-thread-3给我一个线程:2018-03-17 13:48:11
pool-1-thread-3给我一个线程:2018-03-17 13:48:13
pool-1-thread-2给我一个线程1:2018-03-17 13:48:15
pool-1-thread-3给我一个线程:2018-03-17 13:48:15
pool-1-thread-3给我一个线程:2018-03-17 13:48:17
pool-1-thread-3给我一个线程:2018-03-17 13:48:19
pool-1-thread-1给我一个线程:2018-03-17 13:48:21
pool-1-thread-1给我一个线程:2018-03-17 13:48:23
pool-1-thread-3给我一个线程1:2018-03-17 13:48:25
pool-1-thread-1给我一个线程:2018-03-17 13:48:25
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
原文地址:http://blog.51cto.com/13579086/2087880