Java设计模式-模板设计模式

2021-04-29 18:30

阅读:468

标签:str   模式   out   rgs   author   一个   设计模式   als   UNC   

/**
 * 模板设计模式:定义一个操作算法中的框架
 * @author lin
 *
 */
public class Cook{
	public void lunch() {
		buying();
		washing();
		cooking();
		eating();
	}
	public void buying() {
		System.out.println("买菜");
	}
	public void washing() {
		System.out.println("洗菜");
	}
	public void cooking() {
		System.out.println("炒菜");
	}
	public void eating() {
		System.out.println("吃菜");
	}
}
class Test {
	public static void main(String[] args) {
		Cook cook = new Cook();
		cook.lunch();
	}
}

控制台输出: 买菜 洗菜 炒菜 吃菜

Java设计模式-模板设计模式

标签:str   模式   out   rgs   author   一个   设计模式   als   UNC   

原文地址:https://www.cnblogs.com/LinTianwen/p/13231385.html


评论


亲,登录后才可以留言!