首页 > 其他分享 >学习高校课程-软件设计模式-状态、策略和模版模式(lec12)

学习高校课程-软件设计模式-状态、策略和模版模式(lec12)

时间:2024-12-24 14:30:44浏览次数:6  
标签:状态 lec12 软件设计 into Solution 模式 state classes Problem

State: Problem

A finite number of states
The program behaves differently within a state
Can be switched from one state to another, and switching rules (transitions) are also finite and predetermined
有限数量的状态
程序在某个状态下的行为有所不同
可以从一种状态切换到另一种状态,并且切换规则(转换)也是有限且预先确定的

State: Solution

Create new classes for all possible states, and extract all state-specific behaviors into these classes
为所有可能的状态创建新类,并将所有特定于状态的行为提取到这些类中

Strategy: Problem

Example: route planning feature in a navigation app
V1: routes over roads
V2: walking routes
V3: public transport
示例:导航应用中的路线规划功能
V1:道路上的路线
V2:步行路线
V3:公共交通

Strategy: Solution

Extract the algorithms into separate classes: strategies
The client is responsible for selecting the strategy
Switching the strategy is possible at runtime
将算法提取到单独的类中:策略
客户负责选择策略
策略切换是可能在运行时

Template Method: Problem

Example: a data mining application that analyzes documents
Problem 1: a lot of similar code
Problem 2: the client depends on the classes
示例:分析文档的数据挖掘应用程序
问题1:大量类似的代码
问题2:客户端依赖于类

Template Method: Solution

Break down the algorithm into steps
Turn the steps into methods
Call the methods in a single template method
将算法分解为步骤
把步骤变成方法
在单个模板中调用方法

标签:状态,lec12,软件设计,into,Solution,模式,state,classes,Problem
From: https://www.cnblogs.com/Mephostopheles/p/18627202

相关文章

  • 设计模式概述
    文章目录1.设计模式概述1.1软件设计模式的产生背景1.2软件设计模式的概念1.3学习设计模式的必要性1.4设计模式分类1.设计模式概述1.1软件设计模式的产生背景"设计模式"最初并不是出现在软件设计中,而是被用于建筑领域的设计中。1977年美国著名建筑大师、加......
  • 402、基于51单片机的洗衣机仿真设计(数码管,2模式,中断)
    毕设帮助、开题指导、技术解答(有偿)见文末。目录一、设计功能二、proteus仿真三、原理图四、程序源码五、资料包括一、设计功能二、proteus仿真三、原理图四、程序源码五、资料包括需要完整的资料可以点击下面的名片,找我要资源压缩包的百度网......
  • 学习高校课程-软件设计模式-备忘录模式和观察者模式(lec11)
    Memento:ProblemExample:supportingundoinatexteditorappProblem1:privatefieldscannotbeaccessedProblem2:whenfieldsaremadepublic,refactoringwouldbeproblematicProblem3:thefieldsofthesnapshotclassneedtobepublic,exposingal......
  • 国家政策引领,无人系统物流新模式或成CES Asia 2025亮点
    近日,中共中央办公厅、国务院办公厅印发的《有效降低全社会物流成本行动方案》提出,鼓励发展与平台经济、低空经济、无人驾驶等相结合的物流新模式,大力推广无人车、无人船、无人机、无人仓以及无人装卸等技术装备。这一政策导向为物流行业的发展注入了新的活力,也让即将到来的CES......
  • 德普微一级代理 DP2601X SOP-7 带自供功能的多模式、恒压恒流原边控制功率开关
    主要特点带自供电功能,变压器无需辅助绕组具备快速启动功能启动时具有 Line BOP 功能集成 800V 高压功率 BJT±5% 恒流、恒压精度多模式原边控制方式工作无异音可调式线损补偿l 集成线电压和负载电压的恒流补偿集成完善的保护功能:   短路保护 (SLP) ......
  • MySQL主从复制中启用GTID(全局事务标识符)模式
    在MySQL中启用GTID(全局事务标识符)模式进行主从复制涉及几个步骤。GTID为每个事务赋予一个唯一的标识符,从而简化了复制过程和故障恢复。以下是启用GTID模式的基本步骤:首先确保两台数据库目前数据保持一致1.准备工作确保您使用的MySQL版本支持GTID。GTID从MySQL5.6版本开始支持......
  • 学习高校课程-软件设计模式-迭代者模式和中介者模式
    Iterator:ProblemCollectionsareoneofthemostuseddatatypesinprogrammingThereshouldbeawaytogothrougheachelementofthecollectionMoretraversalalgorithmstothecollectionblursitsprimaryresponsibilitySomealgorithmsmightbetailo......
  • 梳理你的思路(从OOP到架构设计)_设计模式Observer模式
    目录1、Observer模式2、范例:Android+Observer模式1、Observer模式定义对象间的1:N依赖关系,以便当一个主体对象(如A)的状态发生改变时,所有依赖于它的众多对象(如B,C,D…)都得到通知,然后可向主体对象(A)取得最新状态内容。如果Observer是个纯粹抽象类别(PureA......
  • 梳理你的思路(从OOP到架构设计)_设计模式Composite模式
    Composite模式此模式能建立多层级的包含关系(即多层级Whole-part关系)。在自然界中常见这种关系,例如,树叶是树的一部分,但树叶又是个整体,其内含着叶脉、叶绿素等「部分」对象。从这图形中,可看出这些对象可依其角色而分为两类:Leaf物件:如上图里的「白色」类别之对象,它们不具有W......
  • 【智能设计模式:AI时代的依赖倒转原则探索】
    ......