概述
学习路径:https://coding.imooc.com/class/270.html
- 外观模式
应用场景:当业务需要调用多个子系统的时候,不单独调用子系统,将用到的子系统封装成一个类给业务层。
如:ShoppingService + TakeExerciseService + WatchMovieService ==> LeisureTimeService
LeisureTime就是购物 锻炼 看电影的一个外观,外部不需要了解子系统都干了什么。
// 传统方法:在应用层写好步骤,依次调用子系统
//校验用户有没有资格换礼品 :
giftExchangeService.setQualifyService(new QualifyService());
//用户消费积分换礼品:
giftExchangeService.setPointPaymentService(new PointPaymentService());
//用户的礼品的物流信息:
giftExchangeService.setShippingService(new ShippingService());
// 外观模式,只提供一个外观给外部调用,隐藏细节
// 指定要一个T-shirt的礼品
PointGift pointGift = new PointGift("T-shirt");
GiftExchangeService giftExchangeService = new GiftExchangeService();
giftExchangeService.giftExchange(pointGift);
最后
以上就是谨慎豆芽为你收集整理的【java_设计模式】外观模式的全部内容,希望文章能够帮你解决【java_设计模式】外观模式所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复