通过在Chipotle用餐了解模板方法设计模式

by Sihui Huang

黄思慧

通过在Chipotle用餐了解模板方法设计模式 (Understanding the Template Method design pattern by eating at Chipotle)

Object-Oriented Design Patterns in Life— gain an intuitive understanding of OO design patterns by linking them with real-life examples.

生活中的面向对象设计模式-通过将它们与实际示例联系起来,可以直观地了解OO设计模式。

Template Method is a commonly used design pattern in programming and real life.

模板方法是编程和现实生活中常用的设计模式。

Before we dive into details of the pattern, let’s learn an important life lesson:

在深入研究模式的细节之前,让我们学习一个重要的人生课程:

Chipotle 101:如何在Chipotle订购。 (Chipotle 101: How to Order at Chipotle.)

There are four steps involved:

涉及四个步骤:

  1. Choose a “vessel”: Burrito vs. Bowl vs. Tacos vs. Salad

    选择一个“容器”:墨西哥卷饼,碗,玉米饼和沙拉
  2. Add meat: Chicken vs Steak vs. Barbacoa vs. Carnitas vs. Vegetarian

    添加肉类:鸡肉vs牛排vs. Barbacoa vs. Carnitas vs.素食主义者
  3. Add toppings: Tomato vs. Corn vs. Green Chili vs. Red Chili

    添加浇头:番茄,玉米,绿色辣椒,红色辣椒
  4. Add extras & drinks: Chips vs. Guacamole vs. Salsa vs. Beer vs. Soda

    添加额外功能和饮料:薯片,鳄梨调味酱,鳄梨酱,莎莎,啤酒和汽水

For example, my go-to order is Bowl + Steak + (Tomato + Corn) + Guacamole and my friend Amber’s go-to order is Burrito + Chicken + (Green Chili + Red Chili) + (Chips + Soda).

例如,我的下单是碗+牛排+(番茄+玉米)+鳄梨调味酱,而我的朋友琥珀的下单是墨西哥卷饼+鸡肉+(绿辣椒+红辣椒)+(薯片+苏打)。

If we code our go-to orders in Ruby, they will look like:

如果我们使用Ruby编写转到订单,则它们将如下所示:

When we order, we put everything we want into the vessel and return the stuffed vessel.

订购时,我们会将所需的所有物品放入容器中,然后将填充的容器退还。

Unfortunately, Amber and I decided to go on a diet for a while. And we decided that when we ordered from Chipotle, we could only get tomato as a topping and no extras. So our choices are limited to:

不幸的是,我和琥珀决定节食一段时间。 然后我们决定,当我们从Chipotle订购时,我们只能拿到番茄作为浇头,而没有多余的东西。 因此,我们的选择仅限于:

  1. Vessel: Burrito vs. Bowl vs. Tacos vs. Salad

    船只:墨西哥卷饼vs.碗vs.炸玉米饼vs.沙拉
  2. Meat: Chicken vs. Steak vs. Barbacoa vs. Carnitas vs. Vegetarian

    肉类:鸡肉,牛排,Barbacoa,Carnitas和素食主义者
  3. Toppings: Tomato

    浇头:番茄
  4. No extras & drinks

    没有额外的东西和饮料

During the diet, our go-to orders have to be modified to:

在节食期间,我们的常用订单必须修改为:

  • Sihui: Bowl + Steak + Tomato + No extras & drinks

    四会:碗+牛排+番茄+没有额外的饮料
  • Amber: Burrito + Chicken + Tomato + No extras & drinks

    琥珀色:墨西哥卷饼+鸡肉+番茄+没有额外的饮料

Putting our orders down in Ruby, we have the following:

在Ruby中下订单,我们有以下几点:

Since both our orders have the exact same toppings, extras, and order methods, it makes sense to pull them out as a parent class, DietOrder, and have DietOrderSihui and DietOrderAmber inherit from it.

由于我们的两个订单都具有完全相同的浇头附加功能订购方法,因此将它们作为父类DietOrder退出并让DietOrderSihuiDietOrderAmber继承是有意义的

Now our friend Ben wants to join our Chipotle Diet Club, and he likes Tacos with Carnitas. Then his order will be:

现在,我们的朋友Ben想加入我们的Chipotle Diet Club,他喜欢带有肉碱的炸玉米饼。 那么他的命令将是:

Ta-da, you just learned the Template Method design pattern! ? ? ?

Ta-da,您刚刚了解了Template Method设计模式! ? ? ?

Don’t believe me?

不相信我吗

Take a look at the definition of the Template Method:

看一下Template方法的定义:

The Template Method pattern is a behavioral design pattern that
模板方法模式是一种行为设计模式,
- defines the program skeleton of an algorithm in an operation,
-定义运算中算法的程序框架,
- deferrs some steps to subclasses.
-将某些步骤推迟到子类。
It lets one redefine certain steps of an algorithm without changing the algorithm’s structure.
它允许重新定义算法的某些步骤,而无需更改算法的结构。

Doesn’t this sound exactly like what we just did with our DietOrder and SihuiDietOrder/AmberDietOrder/BenDietOrder?

这听起来不完全像我们对DietOrderSihuiDietOrder / AmberDietOrder / BenDietOrder所做的那样吗?

DietOrder defines the order skeleton: one can only get tomato as a topping and no extras & drinks, and one orders by picking a vessel and putting everything inside the chosen vessel.

DietOrder定义了订单框架:一个人只能获得番茄作为浇头,而没有额外的饮料,而一个订单则是通过捡起一个容器并将所有东西放入选定的容器中来完成的。

SihuiDietOrder/AmberDietOrder/BenDietOrder redefine the vessel and meat depending on our personal preferences.

SihuiDietOrder / AmberDietOrder / BenDietOrder根据我们的个人喜好重新定义容器和肉类。

Let’s say a month passed by, and Amber and I followed our diet strictly. We decided to reward ourselves with cheat days!

假设过去了一个月,我和Amber严格遵守饮食习惯。 我们决定用作弊的日子来奖励自己!

On a cheat day, we have soda as our drinks. ??? And each of us can decide which day of the month will be our cheat day.

在作弊的一天,我们喝苏打水。 ??? 而且我们每个人都可以决定每月的哪一天是我们的作弊日。

Since Ben is new to the club, he decides to stick to the diet strictly for a bit longer.

由于本是俱乐部的新成员,他决定严格坚持饮食更长的时间。

Let’s see how it looks in Ruby:

让我们看看它在Ruby中的外观:

In DietOrder, we ask if today is a cheat day. If so, we can have Soda as an extra. Otherwise, there are no extras. And by default, today is not a cheat day.

DietOrder中 ,我们询问今天是否是作弊日。 如果是这样,我们可以额外提供汽水。 否则,将没有额外费用。 而且默认情况下,今天不是骗人的日子。

Amber and I get to define our own cheat days:

我和琥珀要定义自己的作弊天数:

Since Ben is sticking with the diet strictly, he doesn’t get a cheat day.

由于本严格遵守饮食习惯,所以他一天都不会作弊。

His class doesn’t need to change.

他的课不需要改变。

The is_cheat_day? method is a hook.

is_cheat_day? 方法是一个钩子。

A hook provides a way for a subclass to implement an optional part of an algorithm.

钩子为子类提供了一种实现算法的可选部分的方法。

If the subclass doesn’t care about the part, it can skip it and use the default implementation in the parent class.

如果子类不关心该部分,则可以跳过该部分,并使用父类中的默认实现。

In our case, is_cheat_day? is optional. SihuiDietOrder and AmberDietOrder implement it because we want to have a cheat day each month. But Ben does not want to have a cheat day. So BenDietOrder skips implementing is_cheat_day? and uses the default one from DietOrder, which always returns false.

在我们的情况下, is_cheat_day? 是可选的。 SihuiDietOrder和AmberDietOrder实现了它,因为我们希望每个月都有一个作弊日。 但本不想不想作弊。 所以BenDietOrder跳过实现is_cheat_day吗? 并使用DietOrder中的默认值(始终返回false)。

There are two important object-oriented design principles used in the Template Method:

模板方法中使用了两个重要的面向对象设计原则:

1. Encapsulate what varies.

1.封装变化的内容。

In our case, the varying parts are vessel, meat, and is_cheat_day?. We encapsulate them in subclasses. For the parts that don’t vary, toppings and extras, we leave them in the parent class.

在我们的例子中,不同的部分是vesselmeatis_cheat_day ?。 我们将它们封装在子类中。 对于不变的部分, 浇头附加料 ,我们将其留在父类中。

2. The Hollywood Principle: Don’t call us, we’ll call you.

2.好莱坞原则:请勿致电给我们,我们会致电给您。

Yes, The Hollywood Principle is a real thing.

是的,好莱坞原则是真实的东西 。

In Hollywood, movie producers will tell actors: “Don’t call us, we’ll call you if we find a role that fits you.”

在好莱坞,电影制片人会告诉演员:“不要打电话给我们,如果找到适合您的角色,我们就会打电话给您。”

In programming, low-level components can participate in the computation, like AmberDietOrder defining its own is_cheat_day?, but the high-level components control when and how, like DietOrder calls is_cheat_day? within extras.

在编程中,低级组件可以参与计算,例如AmberDietOrder定义自己的is_cheat_day?。 ,但高层组件控制何时和如何,例如DietOrder调用is_cheat_day?额外费用内。

外卖: (Takeaways:)

One definition =>

<一个定义= >

The Template Method pattern is a behavioral design pattern that
模板方法模式是一种行为设计模式,
- defines the program skeleton of an algorithm in an operation,
-定义运算中算法的程序框架,
- deferrs some steps to subclasses.
-将某些步骤推迟到子类。
It lets one redefine certain steps of an algorithm without changing the algorithm’s structure.
它允许重新定义算法的某些步骤,而无需更改算法的结构。

Two Design Principles =&gt;

<两个设计原理 >

1. Encapsulate what varies.
1.封装变化的内容。
2. The Hollywood Principle: Don’t call us, we’ll call you.
2.好莱坞原则:请勿致电我们,我们会致电给您。

Or…

要么…

you can just take away a Chipotle order ? ? ?

您可以拿走一份Chipotle订单吗? ? ?

Next time, we take our design & food adventure to ???

下次,我们将我们的设计和美食之旅带到???

翻译自: https://www.freecodecamp.org/news/understanding-the-template-method-design-pattern-by-eating-at-chipotle-37f6e029f065/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395068.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Coriant助力Aureon部署100Gbps光纤网络

根据相关消息显示&#xff0c;光传输设备厂商Coriant日前表示已经向网络传输和业务通信服务供应商Aureon Technology提供了7100纳米分组光传输平台&#xff0c;帮助其进行100Gbps光纤网络的拓展。 该服务供应商&#xff08;Aureon&#xff09;将利用该分组光传输系统&#xff0…

python class tynu()_Visual Studio Express | Teraz Visual Studio Community

Program Visual Studio 2019 jest teraz dostępnyDostosowany instalatorTwrz aplikacje w technologiach WPF, WinForms, platformy uniwersalną systemu Windows, Win32, Android, iOS i innych — wszystko to za pomocą jednego środowiska IDE zapewniającego wszyst…

css样式中如何设置中文字体?

代码如下: .selector{font-family: SimHei,"微软雅黑",sans-serif;} 注意&#xff1a;加上中文名“微软雅黑”是为了兼容opera浏览器&#xff0c;中文字体名必须加上引号&#xff08;单引号双引号都可以&#xff09;。 MicrosoftJhengHei为微软正黑体&#xff0c;STH…

前端做CRM管理系统是做什么_代办行业的CRM客户关系管理系统应该是什么样子的?...

随着互联网的深耕细化&#xff0c;很多企业也在不断优化自己的办公方式&#xff0c;以优化企业的办公流程&#xff0c;提高企业的办事效率。因此实现办公自动化&#xff0c;或者说实现数字化办公就需要逐渐提上日程。今天给大家讲讲可以帮助代办行业实现办公自动化的产品&#…

(译) JSON-RPC 2.0 规范(中文版)

http://wiki.geekdream.com/Specification/json-rpc_2.0.html 起源时间: 2010-03-26(基于2009-05-24版本) 更新: 2013-01-04 作者: JSON-RPC工作组< json-rpcgooglegroups.com > 原文链接: http://www.jsonrpc.org/specification翻译: leozvc < xxfs91gmail.com >…

ios pusher使用_如何使用JavaScript和Pusher实时更新用户状态

ios pusher使用by Rahat Khanna通过拉哈特汉娜 如何使用JavaScript和Pusher实时更新用户状态 (How to update a User’s Status in realtime using JavaScript and Pusher) “Hey, what’s up?” is not a phrase we need to ask someone these days. These days knowing wha…

python + pyqt5 UI和信号槽分离方法

初级菜鸟&#xff0c;知识点记录。 每次重新生成UI.py文件的时候&#xff0c;里面的按钮方法都会被清除&#xff0c;想一个方法可以把按钮响应方法放到外面&#xff0c;利于维护。 新建一个按钮文件并继承UI代码&#xff0c;把信号槽及按钮响应方法写在按钮文件里面&#xff0c…

学习之路~sqh

推荐博客 Edison Chou&#xff1b;Vamei&#xff1b;算法∙面试专题 - 简书&#xff1b;xingoo - 博客园&#xff1b;设计模式 极速理解设计模式系列【目录索引】- Caleung&#xff1b;Net设计模式 - 灵动生活&#xff1b;宅男程序员给老婆的计算机课程系列&#xff1b;C设计模…

python format函数保留两位小数_python format函数

在Python 3.0中&#xff0c;%操作符通过一个更强的格式化方法format()进行了增强。对str.format()的支持已经被反向移植到了Python 2.6在2.6中&#xff0c;8-bit字符串和Unicode字符串都有一个format()方法&#xff0c;这个方法会把字符串当作一个模版&#xff0c;通过传入的参…

蓝牙 sig base uuid_蓝牙模块采用陶瓷天线和PCB天线的区别

一、陶瓷天线陶瓷天线是一种适合于蓝牙设备使用的小型化天线,又分为块状陶瓷天线和多层陶瓷天线。陶瓷天线占用空间很小、性能比较好&#xff1b; 带宽窄&#xff0c;比较难做到多频段&#xff1b;有效提高主板的整合度&#xff0c;并可降低天线对ID的限制&#xff1b;需要在主…

kubernetes系列12—二个特色的存储卷configmap和secret

本文收录在容器技术学习系列文章总目录 1、configmap 1.1 认识configmap ConfigMap用于保存配置数据的键值对&#xff0c;可以用来保存单个属性&#xff0c;也可以用来保存配置文件。ConfigMap跟secret很类似&#xff0c;但它可以更方便地处理不包含敏感信息的字符串。 1.2 创建…

华为完成拉美铜网宽带G.fast技术部署测试

1/11/2016,英国大东通信巴拿马分公司日前与华为公司发布消息称&#xff0c;覆盖拉丁美洲地区的最快铜缆宽带服务系统成功完成初次测试。 作为巴拿马地区领先的移动宽带服务提供商&#xff0c;大东通信巴拿马分公司也是当地最大的电信服务提供商&#xff0c;此次与华为合作在现有…

kotlin调用类中的方法_一种轻松的方法来测试Kotlin中令人沮丧的静态方法调用

kotlin调用类中的方法by Oleksii Fedorov通过Oleksii Fedorov 一种轻松的方法来测试Kotlin中令人沮丧的静态方法调用 (A stress-free way to test frustrating static method calls in Kotlin) Let me make a wild guess… You have encountered some code in Kotlin that is …

python图像加密模块_使用Pycryp的图像加密和解密

这和加密或解密文本是一样的。示例首先导入一些模块&#xff1a;from Crypto.Cipher import AESfrom Crypto import Random然后&#xff0c;让我们生成一个键和一个初始化向量。key Random.new().read(AES.block_size)iv Random.new().read(AES.block_size)加密下面的代码加载…

遇到attemp to invoke virtual method

这个很大原因是没有预先初始化sdk&#xff0c;检查application的配置是否配置了application&#xff1a;name 转载于:https://www.cnblogs.com/caimuqing/p/5894099.html

app启动页自动跳转源码_关于移动端App启动页的策划方案

App启动页是指app在启东时需要加载必要的运行环境和配置&#xff0c;在这个过程中提示用户等待的一个过渡页面。在产品经理眼里启动页是app给予用户重要的第一印象&#xff1b;也是App最重要的黄金页面之一&#xff0c;所有用户100%都会看到的页面。启动页适合用来做以下几个事…

电信运营商占IDC市场65%:中国电信占行业半数以上

随着云计算、大数据的快速发展&#xff0c;作为重要基础设施的IDC数据中心也在高速扩张。 近日&#xff0c;DCA常务理事长何宝宏介绍&#xff0c;我国规划在建数据中心共计246个&#xff0c;总设计机架数约为103万个&#xff0c;总设计服务器规模约1326万台。在用超大型、大型数…

Python 日期和时间戳的转换

Python 日期和时间戳的转换 1. Python中处理时间的模块 Python中处理时间的模块有time、datetime和calendar。 在Python中表示时间的方式&#xff1a; 时间戳&#xff1a;10位整数位和若干小数位&#xff0c;例如 1551153156.6358607元组&#xff08;struct_time&#xff09;: …

快应用比赛_我的应用如何在国际学生比赛中获得第三名

快应用比赛by Rafael Melo通过拉斐尔梅洛 我的应用如何在国际学生比赛中获得第三名 (How my App won third place in an International Student Competition) I developed an App that won third place at the IEEE Mobile Applications Development Contest 2017 (IEEEmadC 2…

JAVA中String类的intern()方法的作用

一般我们变成很少使用到 intern这个方法&#xff0c;今天我就来解释一下这个方法是干什么的&#xff0c;做什么用的 首先请大家看一个例子&#xff1a; public static void main(String[] args) throws Exception { String a "b" ; String b "b" ; …