java设计模式之模板方法模式

本文深入探讨了模板方法模式,一种行为设计模式,通过定义算法骨架并允许子类提供具体实现来增强代码复用性和扩展性。文章展示了如何使用Java实现一个简单的计算器例子,通过抽象基类定义通用算法流程,子类只需实现具体计算逻辑。
摘要由CSDN通过智能技术生成
  模板方法模式 和策略模式类似 通过抽象类定义一个抽象方法和非抽象方法 子类继承抽象类后实现抽象方法 通过改变抽象类的引入来改变调用的方法 将方法都放在抽象类中最好还是面向接口编程
public abstract class AbstractCalculator {
	/*主方法,实现对本类其它方法的调用*/
	public final int calculate(String exp, String opt) {
		int array[] = split(exp, opt);
		return calculate(array[0], array[1]);
	}

	abstract public int calculate(int num1, int num2);

	public int[] split(String exp, String opt) {
		String array[] = exp.split(opt);
		int arrayInt[] = new int[2];
		arrayInt[0] = Integer.parseInt(array[0]);
		arrayInt[1] = Integer.parseInt(array[1]);
		return arrayInt;
	}
}


class Plus extends AbstractCalculator {

	@Override
	public int calculate(int num1, int num2) {
		return num1 + num2;
	}
}

class TemplateMethod {

	public static void main(String[] args) {
		String exp = "8+8";
		AbstractCalculator cal = new Plus();
		int result = cal.calculate(exp, "\\+");
		System.out.println(result);
	}
}

输出的结果为:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值