-
Thread中run和start方法的模板设计模式
创建一个Thread需要继承Thread重写run方法或者实现Runnable接口中的run方法,其实两者都是一样因为Thread也继承了Runnable接口。
实现了run方法,但是启动确实用start方法,那么这是为什么?
Thread使用模板设计模式,线程控制的逻辑交给Thread自己,而实现的业务逻辑则交给run方法。
先看一下start方法的一段源码:
1 if (threadStatus != 0) 2 throw new IllegalThreadStateException(); 3 4 group.add(this); 5 6 boolean started = false; 7 try { 8 start0(); 9 started = true; 10 } finally { 11 try { 12 if (!started) { 13 group.threadStartFailed(this); 14 } 15 } catch (Throwable ignore) { 16 /* do nothing. If start0 threw a Throwable then 17 it will be passed up the call stack */ 18 } 19 }
其中run方法是由第8行start0()来启动的。
总的来说就是:run方法来实现自己的业务逻辑,而线程的其他控制逻辑交给Thread,也就是start方法中除了启动run的start0其他逻辑代码则是线程控制的逻辑代码。
来看一个模板方法的例子:
public class TemplateMethodDesign { public final void printMsg(String msg){ System.out.println("System control logic"); customizedMsg(msg); System.out.println("System the other control logic"); } protected void customizedMsg(String msg){ } public static void main(String[] args){ TemplateMethodDesign design = new TemplateMethodDesign(){ @Override public void customizedMsg(String msg) { System.out.println(msg); } }; design.printMsg("here is your logic"); } }
customizedMsg重写自己的逻辑,printMsg方法定义控制的逻辑代码而且是final修饰的,不允许重写。好处就是,结构代码交给父类,子类只需要实现自己的业务逻辑即可。
来源:
https://www.cnblogs.com/niezhichao/p/14239062.html
最新更新
python爬虫及其可视化
使用python爬取豆瓣电影短评评论内容
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比