目标
【理解】线程池基本概念
【理解】线程池工作原理
【掌握】自定义线程池
【应用】java内置线程池
【应用】使用java内置线程池完成综合案例
线程池
- 线程池基础
- 线程池使用
- 线程池综合案例
4.学员练习
5.线程池总结
概念介绍
1:什么是线程池
2:为什么使用线程池
3:线程池有哪些优势
什么是池
什么是线程池
线程池其实就是一种多线程处理形式,处理过程中可以将任务添加到队列中,然后在创建线程后自动启动这些任务。这里的线程就是我们前面学过的线程,这里的任务就是我们前面学过的实现了runnable或callable接口的实例对象;
为什么使用线程池
使用线程池最大的原因就是可以根据系统的需求和硬件环境灵活的控制线程的数量,且可以对所有线程进行统一的管理和控制,从而提高系统的运行效率,降低系统运行运行压力;当然了,使用线程池的原因不仅仅只有这些,我们可以从线程池自身的优点上来进一步了解线程池的好处;
使用线程池有哪些优势
1:线程和任务分离,提升线程重用性;
2:控制线程并发数量,降低服务器压力,统一管理所有线程;
3:提升系统响应速度,假如创建线程用的时间为t1,执行任务用的时间为t2,销毁线程用的时间为t3,那么使用线程池就免去了t1和t3的时间;
线程池应用场景介绍
应用场景介绍
1:网购商品秒杀
2:云盘文件上传和下载
3:12306网上购票系统等
总之
只要有并发的地方、任务数量大或小、每个任务执行时间长或短的都可以使用线程池;
只不过在使用线程池的时候,注意一下设置合理的线程池大小即可;(关于如何合理设置线程池大小在后面的章节中讲解)
java内置线程池
自定义线程池
异步计算结果(future)
java内置线程池原理剖析
我们要想自定义线程池,必须先了解线程池的工作原理,才能自己定义线程池;
这里我们通过观察java中threadpoolexecutor的源码来学习线程池的原理;
(源码演示在idea中查看)
threadpoolexecutor部分源码
构造方法:
public threadpoolexecutor(int corepoolsize, //核心线程数量
int maximumpoolsize,// 最大线程数
long keepalivetime, // 最大空闲时间
timeunit unit, // 时间单位
blockingqueue workqueue, // 任务队列
threadfactory threadfactory, // 线程工厂
rejectedexecutionhandler handler // 饱和处理机制
)
{ ... }
threadpoolexecutor参数详解
我们可以通过下面的场景理解threadpoolexecutor中的各个参数;
a客户(任务)去银行(线程池)办理业务,但银行刚开始营业,窗口服务员还未就位(相当于线程池中初始线程数量为0),
于是经理(线程池管理者)就安排1号工作人员(创建1号线程执行任务)接待a客户(创建线程);
在a客户业务还没办完时,b客户(任务)又来了,于是经理(线程池管理者)就安排2号工作人员(创建2号线程执行任务)接待b客户(又创建了一个新的线程);假设该银行总共就2个窗口(核心线程数量是2);
紧接着在a,b客户都没有结束的情况下c客户来了,于是经理(线程池管理者)就安排c客户先坐到银行大厅的座位上(空位相当于是任务队列)等候,
并告知他: 如果1、2号工作人员空出,c就可以前去办理业务;
此时d客户又到了银行,(工作人员都在忙,大厅座位也满了)于是经理赶紧安排临时工(新创建的线程)在大堂站着,手持pad设备给d客户办理业务;
假如前面的业务都没有结束的时候e客户又来了,此时正式工作人员都上了,临时工也上了,座位也满了(临时工加正式员工的总数量就是最大线程数),
于是经理只能按《超出银行最大接待能力处理办法》(饱和处理机制)拒接接待e客户;
最后,进来办业务的人少了,大厅的临时工空闲时间也超过了1个小时(最大空闲时间),经理就会让这部分空闲的员工人下班.(销毁线程)
但是为了保证银行银行正常工作(有一个allowcorethreadtimeout变量控制是否允许销毁核心线程,默认false),即使正式工闲着,也不得提前下班,所以1、2号工作人员继续待着(池内保持核心线程数量);
线程池工作流程总结示意图
自定义线程池-参数设计分析
通过观察java中的内置线程池参数讲解和线程池工作流程总结,我们不难发现,要设计一个好的线程池,就必须合理的设置线程池的4个参数;那到底该如何合理的设计4个参数的值呢?我们一起往下看.
4个参数的设计:
1:核心线程数(corepoolsize)
核心线程数的设计需要依据任务的处理时间和每秒产生的任务数量来确定,例如:执行一个任务需要0.1秒,系统百分之80的时间每秒都会产生100个任务,那么要想在1秒内处理完这100个任务,就需要10个线程,此时我们就可以设计核心线程数为10;当然实际情况不可能这么平均,所以我们一般按照8020原则设计即可,既按照百分之80的情况设计核心线程数,剩下的百分之20可以利用最大线程数处理;
2:任务队列长度(workqueue)
任务队列长度一般设计为:核心线程数/单个任务执行时间*2即可;例如上面的场景中,核心线程数设计为10,单个任务执行时间为0.1秒,则队列长度可以设计为200;
3:最大线程数(maximumpoolsize)
最大线程数的设计除了需要参照核心线程数的条件外,还需要参照系统每秒产生的最大任务数决定:例如:上述环境中,如果系统每秒最大产生的任务是1000个,那么,最大线程数=(最大任务数-任务队列长度)*单个任务执行时间;既: 最大线程数=(1000-200)*0.1=80个;
4:最大空闲时间(keepalivetime)
这个参数的设计完全参考系统运行环境和硬件压力设定,没有固定的参考值,用户可以根据经验和系统产生任务的时间间隔合理设置一个值即可;
自定义线程池-实现步骤
1:编写任务类(mytask),实现runnable接口;
2:编写线程类(myworker),用于执行任务,需要持有所有任务;
3:编写线程池类(mythreadpool),包含提交任务,执行任务的能力;
4:编写测试类(mytest),创建线程池对象,提交多个任务测试;
mytask
package com.itheima.demo01;
/*
需求:
自定义线程池练习,这是任务类,需要实现runnable;
包含任务编号,每一个任务执行时间设计为0.2秒
*/
public class mytask implements runnable{
private int id;
//由于run方法是重写接口中的方法,因此id这个属性初始化可以利用构造方法完成
public mytask(int id) {
this.id = id;
}
@override
public void run() {
string name = thread.currentthread().getname();
system.out.println("线程:" name " 即将执行任务:" id);
try {
thread.sleep(200);
} catch (interruptedexception e) {
e.printstacktrace();
}
system.out.println("线程:" name " 完成了任务:" id);
}
@override
public string tostring() {
return "mytask{"
"id=" id
'}';
}
}
myworker
package com.itheima.demo01;
import java.util.list;
/*
需求:
编写一个线程类,需要继承thread类,设计一个属性,用于保存线程的名字;
设计一个集合,用于保存所有的任务;
*/
public class myworker extends thread{
private string name;//保存线程的名字
private list tasks;
//利用构造方法,给成员变量赋值
public myworker(string name, list tasks) {
super(name);
this.tasks = tasks;
}
@override
public void run() {
//判断集合中是否有任务,只要有,就一直执行任务
while (tasks.size()>0){
runnable r = tasks.remove(0);
r.run();
}
}
}
mythreadpool
package com.itheima.demo01;
import java.util.collections;
import java.util.linkedlist;
import java.util.list;
/*
这是自定义的线程池类;
成员变量:
1:任务队列 集合 需要控制线程安全问题
2:当前线程数量
3:核心线程数量
4:最大线程数量
5:任务队列的长度
成员方法
1:提交任务;
将任务添加到集合中,需要判断是否超出了任务总长度
2:执行任务;
判断当前线程的数量,决定创建核心线程还是非核心线程
*/
public class mythreadpool {
// 1:任务队列 集合 需要控制线程安全问题
private list tasks = collections.synchronizedlist(new linkedlist<>());
//2:当前线程数量
private int num;
//3:核心线程数量
private int corepoolsize;
//4:最大线程数量
private int maxsize;
//5:任务队列的长度
private int worksize;
public mythreadpool(int corepoolsize, int maxsize, int worksize) {
this.corepoolsize = corepoolsize;
this.maxsize = maxsize;
this.worksize = worksize;
}
//1:提交任务;
public void submit(runnable r){
//判断当前集合中任务的数量,是否超出了最大任务数量
if(tasks.size()>=worksize){
system.out.println("任务:" r "被丢弃了...");
}else {
tasks.add(r);
//执行任务
exectask(r);
}
}
//2:执行任务;
private void exectask(runnable r) {
//判断当前线程池中的线程总数量,是否超出了核心数,
if(num < corepoolsize){
new myworker("核心线程:" num,tasks).start();
num ;
}else if(num < maxsize){
new myworker("非核心线程:" num,tasks).start();
num ;
}else {
system.out.println("任务:" r " 被缓存了...");
}
}
}
mytest
package com.itheima.demo01;
/*
测试类:
1: 创建线程池类对象;
2: 提交多个任务
*/
public class mytest {
public static void main(string[] args) {
//1:创建线程池类对象;
mythreadpool pool = new mythreadpool(2,4,20);
//2: 提交多个任务
for (int i = 0; i <30 ; i ) {
//3:创建任务对象,并提交给线程池
mytask my = new mytask(i);
pool.submit(my);
}
}
}
java内置线程池-executorservice介绍
executorservice接口是java内置的线程池接口,通过学习接口中的方法,可以快速的掌握java内置线程池的基本使用
常用方法:
void shutdown() 启动一次顺序关闭,执行以前提交的任务,但不接受新任务。
list shutdownnow() 停止所有正在执行的任务,暂停处理正在等待的任务,并返回等待执行的任务列表。
future submit(callable task) 执行带返回值的任务,返回一个future对象。
future submit(runnable task) 执行 runnable 任务,并返回一个表示该任务的 future。
future submit(runnable task, t result) 执行 runnable 任务,并返回一个表示该任务的 future。
java内置线程池-executorservice获取
获取executorservice可以利用jdk中的executors 类中的静态方法,常用获取方式如下:
static executorservice newcachedthreadpool() 创建一个默认的线程池对象,里面的线程可重用,且在第一次使用时才创建
static executorservice newcachedthreadpool(threadfactory threadfactory)
线程池中的所有线程都使用threadfactory来创建,这样的线程无需手动启动,自动执行;
static executorservice newfixedthreadpool(int nthreads) 创建一个可重用固定线程数的线程池
static executorservice newfixedthreadpool(int nthreads, threadfactory threadfactory)
创建一个可重用固定线程数的线程池且线程池中的所有线程都使用threadfactory来创建。
static executorservice newsinglethreadexecutor()
创建一个使用单个 worker 线程的 executor,以无界队列方式来运行该线程。
static executorservice newsinglethreadexecutor(threadfactory threadfactory)
创建一个使用单个 worker 线程的 executor,且线程池中的所有线程都使用threadfactory来创建。
newcachedthreadpool
package com.test;
import java.util.concurrent.executorservice;
import java.util.concurrent.executors;
import java.util.concurrent.threadfactory;
/*
练习executors获取executorservice,然后调用方法,提交任务;
*/
public class mytest01 {
public static void main(string[] args) {
// test1();
test2();
}
//练习newcachedthreadpool方法
private static void test1() {
//1:使用工厂类获取线程池对象
executorservice es = executors.newcachedthreadpool();
//2:提交任务;
for (int i = 1; i <=10 ; i ) {
es.submit(new myrunnable(i));
}
}
private static void test2() {
//1:使用工厂类获取线程池对象
executorservice es = executors.newcachedthreadpool(new threadfactory() {
int n=1;
@override
public thread newthread(runnable r) {
return new thread(r,"自定义的线程名称" n );
}
});
//2:提交任务;
for (int i = 1; i <=10 ; i ) {
es.submit(new myrunnable(i));
}
}
}
/*
任务类,包含一个任务编号,在任务中,打印出是哪一个线程正在执行任务
*/
class myrunnable implements runnable{
private int id;
public myrunnable(int id) {
this.id = id;
}
@override
public void run() {
//获取线程的名称,打印一句话
string name = thread.currentthread().getname();
system.out.println(name "执行了任务..." id);
}
}
newfixedthreadpool
package com.test;
import java.util.concurrent.executorservice;
import java.util.concurrent.executors;
import java.util.concurrent.threadfactory;
/*
练习executors获取executorservice,然后调用方法,提交任务;
*/
public class mytest02 {
public static void main(string[] args) {
//test1();
test2();
}
//练习方法newfixedthreadpool
private static void test1() {
//1:使用工厂类获取线程池对象
executorservice es = executors.newfixedthreadpool(3);
//2:提交任务;
for (int i = 1; i <=10 ; i ) {
es.submit(new myrunnable2(i));
}
}
private static void test2() {
//1:使用工厂类获取线程池对象
executorservice es = executors.newfixedthreadpool(3,new threadfactory() {
int n=1;
@override
public thread newthread(runnable r) {
return new thread(r,"自定义的线程名称" n );
}
});
//2:提交任务;
for (int i = 1; i <=10 ; i ) {
es.submit(new myrunnable2(i));
}
}
}
/*
任务类,包含一个任务编号,在任务中,打印出是哪一个线程正在执行任务
*/
class myrunnable2 implements runnable{
private int id;
public myrunnable2(int id) {
this.id = id;
}
@override
public void run() {
//获取线程的名称,打印一句话
string name = thread.currentthread().getname();
system.out.println(name "执行了任务..." id);
}
}
newsinglethreadexecutor
package com.test;
import java.util.concurrent.executorservice;
import java.util.concurrent.executors;
import java.util.concurrent.threadfactory;
/*
练习executors获取executorservice,然后调用方法,提交任务;
*/
public class mytest03 {
public static void main(string[] args) {
//test1();
test2();
}
//练习方法newfixedthreadpool
private static void test1() {
//1:使用工厂类获取线程池对象
executorservice es = executors.newsinglethreadexecutor();
//2:提交任务;
for (int i = 1; i <=10 ; i ) {
es.submit(new myrunnable3(i));
}
}
private static void test2() {
//1:使用工厂类获取线程池对象
executorservice es = executors.newsinglethreadexecutor(new threadfactory() {
int n=1;
@override
public thread newthread(runnable r) {
return new thread(r,"自定义的线程名称" n );
}
});
//2:提交任务;
for (int i = 1; i <=10 ; i ) {
es.submit(new myrunnable3(i));
}
}
}
/*
任务类,包含一个任务编号,在任务中,打印出是哪一个线程正在执行任务
*/
class myrunnable3 implements runnable{
private int id;
public myrunnable3(int id) {
this.id = id;
}
@override
public void run() {
//获取线程的名称,打印一句话
string name = thread.currentthread().getname();
system.out.println(name "执行了任务..." id);
}
}
练习executors获取executorservice,测试关闭线程池的方法;
package com.test;
import java.util.list;
import java.util.concurrent.executorservice;
import java.util.concurrent.executors;
import java.util.concurrent.threadfactory;
/*
练习executors获取executorservice,测试关闭线程池的方法;
*/
public class mytest04 {
public static void main(string[] args) {
test1();
// test2();
}
//练习方法newfixedthreadpool
private static void test1() {
//1:使用工厂类获取线程池对象
executorservice es = executors.newsinglethreadexecutor();
//2:提交任务;
for (int i = 1; i <=10 ; i ) {
es.submit(new myrunnable4(i));
}
//3:关闭线程池,仅仅是不再接受新的任务,以前的任务还会继续执行
es.shutdown();
//es.submit(new myrunnable4(888));//不能再提交新的任务了
}
private static void test2() {
//1:使用工厂类获取线程池对象
executorservice es = executors.newsinglethreadexecutor(new threadfactory() {
int n=1;
@override
public thread newthread(runnable r) {
return new thread(r,"自定义的线程名称" n );
}
});
//2:提交任务;
for (int i = 1; i <=10 ; i ) {
es.submit(new myrunnable4(i));
}
//3:立刻关闭线程池,如果线程池中还有缓存的任务,没有执行,则取消执行,并返回这些任务
list list = es.shutdownnow();
system.out.println(list);
}
}
/*
任务类,包含一个任务编号,在任务中,打印出是哪一个线程正在执行任务
*/
class myrunnable4 implements runnable{
private int id;
public myrunnable4(int id) {
this.id = id;
}
@override
public void run() {
//获取线程的名称,打印一句话
string name = thread.currentthread().getname();
system.out.println(name "执行了任务..." id);
}
@override
public string tostring() {
return "myrunnable4{"
"id=" id
'}';
}
}
java内置线程池-scheduledexecutorservice
scheduledexecutorservice是executorservice的子接口,具备了延迟运行或定期执行任务的能力,
常用获取方式如下:
static scheduledexecutorservice newscheduledthreadpool(int corepoolsize)
创建一个可重用固定线程数的线程池且允许延迟运行或定期执行任务;
static scheduledexecutorservice newscheduledthreadpool(int corepoolsize, threadfactory threadfactory)
创建一个可重用固定线程数的线程池且线程池中的所有线程都使用threadfactory来创建,且允许延迟运行或定期执行任务;
static scheduledexecutorservice newsinglethreadscheduledexecutor()
创建一个单线程执行程序,它允许在给定延迟后运行命令或者定期地执行。
static scheduledexecutorservice newsinglethreadscheduledexecutor(threadfactory threadfactory)
创建一个单线程执行程序,它可安排在给定延迟后运行命令或者定期地执行。
scheduledexecutorservice常用方法如下:
scheduledfuture schedule(callable callable, long delay, timeunit unit)
延迟时间单位是unit,数量是delay的时间后执行callable。
scheduledfuture schedule(runnable command, long delay, timeunit unit)
延迟时间单位是unit,数量是delay的时间后执行command。
scheduledfuture scheduleatfixedrate(runnable command, long initialdelay, long period, timeunit unit)
延迟时间单位是unit,数量是initialdelay的时间后,每间隔period时间重复执行一次command。
scheduledfuture schedulewithfixeddelay(runnable command, long initialdelay, long delay, timeunit unit)
创建并执行一个在给定初始延迟后首次启用的定期操作,随后,在每一次执行终止和下一次执行开始之间都存在给定的延迟。
newscheduledthreadpool的schedule
package com.test.demo3;
import java.util.concurrent.executors;
import java.util.concurrent.scheduledexecutorservice;
import java.util.concurrent.timeunit;
/*
测试scheduleexecutorservice接口中延迟执行任务和重复执行任务的功能
*/
public class scheduleexecutorservicedemo01 {
public static void main(string[] args) {
//1:获取一个具备延迟执行任务的线程池对象
scheduledexecutorservice es = executors.newscheduledthreadpool(3);
//2:创建多个任务对象,提交任务,每个任务延迟2秒执行
for (int i=1;i<=10;i ){
es.schedule(new myrunnable(i),2, timeunit.seconds);
}
system.out.println("over");
}
}
class myrunnable implements runnable{
private int id;
public myrunnable(int id) {
this.id = id;
}
@override
public void run() {
string name = thread.currentthread().getname();
system.out.println(name "执行了任务:" id);
}
}
scheduleatfixedrate方法
package com.test.demo3;
import java.util.concurrent.executors;
import java.util.concurrent.scheduledexecutorservice;
import java.util.concurrent.threadfactory;
import java.util.concurrent.timeunit;
/*
测试scheduleexecutorservice接口中延迟执行任务和重复执行任务的功能
*/
public class scheduleexecutorservicedemo02 {
public static void main(string[] args) {
//1:获取一个具备延迟执行任务的线程池对象
scheduledexecutorservice es = executors.newscheduledthreadpool(3, new threadfactory() {
int n = 1;
@override
public thread newthread(runnable r) {
return new thread(r,"自定义线程名:" n );
}
});
//2:创建多个任务对象,提交任务,每个任务延迟2秒执行
es.scheduleatfixedrate(new myrunnable2(1),1,2,timeunit.seconds);
system.out.println("over");
}
}
class myrunnable2 implements runnable{
private int id;
public myrunnable2(int id) {
this.id = id;
}
@override
public void run() {
string name = thread.currentthread().getname();
try {
thread.sleep(1500);
} catch (interruptedexception e) {
e.printstacktrace();
}
system.out.println(name "执行了任务:" id);
}
}
java内置线程池-异步计算结果(future)
我们刚刚在学习java内置线程池使用时,没有考虑线程计算的结果,但开发中,我们有时需要利用线程进行一些计算,然后获取这些计算的结果,而java中的future接口就是专门用于描述异步计算结果的,我们可以通过future 对象获取线程计算的结果;
future 的常用方法如下:
boolean cancel(boolean mayinterruptifrunning)
试图取消对此任务的执行。
v get()
如有必要,等待计算完成,然后获取其结果。
v get(long timeout, timeunit unit)
如有必要,最多等待为使计算完成所给定的时间之后,获取其结果(如果结果可用)。
boolean iscancelled()
如果在任务正常完成前将其取消,则返回 true。
boolean isdone()
如果任务已完成,则返回 true。
package com.itheima.demo04;
import java.util.concurrent.*;
/*
练习异步计算结果
*/
public class futuredemo {
public static void main(string[] args) throws exception {
//1:获取线程池对象
executorservice es = executors.newcachedthreadpool();
//2:创建callable类型的任务对象
future f = es.submit(new mycall(1, 1));
//3:判断任务是否已经完成
//test1(f);
boolean b = f.cancel(true);
//system.out.println("取消任务执行的结果:" b);
//integer v = f.get(1, timeunit.seconds);//由于等待时间过短,任务来不及执行完成,会报异常
//system.out.println("任务执行的结果是:" v);
}
//正常测试流程
private static void test1(future f) throws interruptedexception, executionexception {
boolean done = f.isdone();
system.out.println("第一次判断任务是否完成:" done);
boolean cancelled = f.iscancelled();
system.out.println("第一次判断任务是否取消:" cancelled);
integer v = f.get();//一直等待任务的执行,直到完成为止
system.out.println("任务执行的结果是:" v);
boolean done2 = f.isdone();
system.out.println("第二次判断任务是否完成:" done2);
boolean cancelled2 = f.iscancelled();
system.out.println("第二次判断任务是否取消:" cancelled2);
}
}
class mycall implements callable{
private int a;
private int b;
//通过构造方法传递两个参数
public mycall(int a, int b) {
this.a = a;
this.b = b;
}
@override
public integer call() throws exception {
string name = thread.currentthread().getname();
system.out.println(name "准备开始计算...");
thread.sleep(2000);
system.out.println(name "计算完成...");
return a b;
}
}
综合案例-秒杀商品
案例介绍:
假如某网上商城推出活动,新上架10部新手机免费送客户体验,要求所有参与活动的人员在规定的时间同时参与秒杀挣抢,假如有20人同时参与了该活动,请使用线程池模拟这个场景,保证前10人秒杀成功,后10人秒杀失败;
要求:
1:使用线程池创建线程
2:解决线程安全问题
思路提示:
1:既然商品总数量是10个,那么我们可以在创建线程池的时候初始化线程数是10个及以下,设计线程池最大数量为10个;
2:当某个线程执行完任务之后,可以让其他秒杀的人继续使用该线程参与秒杀;
3:使用synchronized控制线程安全,防止出现错误数据;
代码步骤:
1:编写任务类,主要是送出手机给秒杀成功的客户;
2:编写主程序类,创建20个任务(模拟20个客户);
3:创建线程池对象并接收20个任务,开始执行任务;
package com.itheima.demo05;
/*
任务类:
包含了商品数量,客户名称,送手机的行为;
*/
public class mytask implements runnable {
//设计一个变量,用于表示商品的数量
private static int id = 10;
//表示客户名称的变量
private string username;
public mytask(string username) {
this.username = username;
}
@override
public void run() {
string name = thread.currentthread().getname();
system.out.println(username "正在使用" name "参与秒杀任务...");
try {
thread.sleep(200);
} catch (interruptedexception e) {
e.printstacktrace();
}
synchronized (mytask.class){
if(id>0){
system.out.println(username "使用" name "秒杀:" id-- "号商品成功啦!");
}else {
system.out.println(username "使用" name "秒杀失败啦!");
}
}
}
}
package com.itheima.demo05;
import java.util.concurrent.linkedblockingqueue;
import java.util.concurrent.threadpoolexecutor;
import java.util.concurrent.timeunit;
/*
主程序类,测试任务类
*/
public class mytest {
public static void main(string[] args) {
//1:创建一个线程池对象
threadpoolexecutor pool = new threadpoolexecutor(3,5,1, timeunit.minutes,new linkedblockingqueue<>(15));
//2:循环创建任务对象
for (int i = 1; i <=20 ; i ) {
mytask mytask = new mytask("客户" i);
pool.submit(mytask);
}
//3:关闭线程池
pool.shutdown();
}
}
案例介绍:
设计一个程序,使用两个线程模拟在两个地点同时从一个账号中取钱,假如卡中一共有1000元,每个线程取800元,要求演示结果一个线程取款成功,剩余200元,另一个线程取款失败,余额不足;
要求:
1:使用线程池创建线程
2:解决线程安全问题
思路提示:
1:线程池可以利用executors工厂类的静态方法,创建线程池对象;
2:解决线程安全问题可以使用synchronized方法控制取钱的操作
3:在取款前,先判断余额是否足够,且保证余额判断和取钱行为的原子性;
package com.itheima.demo06;
public class mytask implements runnable {
//用户姓名
private string username;
//取款金额
private double money;
//总金额
private static double total = 1000;
public mytask(string username, double money) {
this.username = username;
this.money = money;
}
@override
public void run() {
string name = thread.currentthread().getname();
system.out.println(username "正在准备使用" name "取款:" money "元");
try {
thread.sleep(200);
} catch (interruptedexception e) {
e.printstacktrace();
}
synchronized (mytask.class){
if(total-money>0){
system.out.println(username "使用" name "取款:" money "元成功,余额:" (total-money));
total-=money;
}else {
system.out.println(username "使用" name "取款:" money "元失败,余额:" total);
}
}
}
}
package com.itheima.demo06;
import java.util.concurrent.executorservice;
import java.util.concurrent.executors;
import java.util.concurrent.threadfactory;
public class mytest {
public static void main(string[] args) {
//1:创建线程池对象
executorservice pool = executors.newfixedthreadpool(2, new threadfactory() {
int id = 1;
@override
public thread newthread(runnable r) {
return new thread(r, "atm" id );
}
});
//2:创建两个任务并提交
for (int i = 1; i <=2 ; i ) {
mytask mytask = new mytask("客户" i, 800);
pool.submit(mytask);
}
//3:关闭线程池
pool.shutdown();
}
}
线程池总结
线程池的使用步骤可以归纳总结为五步 :
1:利用executors工厂类的静态方法,创建线程池对象;
2:编写runnable或callable实现类的实例对象;
3:利用executorservice的submit方法或scheduledexecutorservice的schedule方 法提交并执行线程任务
4:如果有执行结果,则处理异步执行结果(future)
5:调用shutdown()方法,关闭线程池