【软件设计】

设计原则

单一职责原则Single responsibility principle(SRP)

A class should have a single purpose and only one reason to change If a class has more than one responsibility, then the responsibilities becomes coupled SRP is one of the simplest of the principles, and the one of the hardest to get right.

Heuristics

Describe the primary responsibility in a single sentence Group similar methods Look at hidden methods (private, protected) Many of them indicate that there is another class in the class tying to get out Look for decisions that can change They should go into a separate class Look for internal relationships Are certain variables used by some methods and not others?

Benefits

Easy to modularize, better organization of code Better robustness Weaker coupling Easier to reuse Better maintainability Easy to test Easy to debug

开闭原则Open closed principle(OCP)

Software entities( classes, modules, functions, etc.) should be open for extension, but closed for modification “Open for extension”:The behavior of the module can be extended (e.g., by subclassing) “Closed for modification”:Extending the behavior of a module does not result in changes to the existing source code or binary code of the module This is especially valuable in a production environment, where changes to source code may necessitate code reviews unit tests, Integration test etc., procedures

里氏代换原则Liskov Substitution principle(LSP)

子类可以随时代换父类

满足is……a……的关系

除非父类是抽象方法,子类不能重写

Subtypes must be substitutable for their base types LSP defines the OO inheritance principle If a client uses a base class, then it should not differentiate the base class from derived class, which means the derived class can substitute the base class

Interface segregation Principle(ISP)接口隔离原则

Clients should not be forced to depend on methods they do not use Design cohesive interfaces and avoid "fat" interfaces The dependency of one class to another one should depend on the smallest possible interface The interfaces of the class can be broken up into groups of methods Each group serves a different set of clients

Dependency inversion principle(DIP)依赖倒置原则

上层和下层中间应该有一个依赖层

High-level modules should not depend on low-level modules Both should depend on abstractions(抽象层) Abstractions should not depend on details Details should depend on abstractions DIP is at the very heart of framework design

Low of Demeter(LOD)迪米特法则

Principle of Least Knowledge最少知识原则 Only talk to your immediate friends Don’t talk to strangers Write “shy” codes Minimize coupling

A method M of an object O may only invoke the methods of the following kinds of objects: O itself M's parameters Any objects created/instantiated within M O's direct component objects/list

Composition reuse principle (CRP)

Composite / Aggregate Reuse Principle(CARP)

Note: some of the features if the new object has been created in other good object which has been achieved, then try to use the functionality provided by other objects to become part of the new object, rather than their own re-create. These new objects through objects have been assigned to multiplexing function. In short, to make use of synthesis / polymerization, try not to use inheritance.

Comparing composition and inheritance

方法:继承,组合(合成),

Inheritance is tightly coupled whereas composition is loosely coupled. There is no access control in inheritance whereas access can be restricted in composition. We expose all the superclass methods to the other classes having access to subclass. So if a new method is introduced or there are security holes in the superclass, subclass becomes vulnerable. Since in composition we choose which methods to use, it’s more secure than inheritance. Composition provides flexibility in invocation of methods that is useful with multiple subclass scenario. One more benefit of composition over inheritance is testing scope. Unit testing is easy in composition because we know what all methods we are using from other class.

Choosing between composition and inheritance

Make sure inheritance models the is-a relationship Don't use inheritance just to get code reuse Don't use inheritance just to get at polymorphism

设计模式

Creational Design Patterns

Creational design patterns abstract the instantiation process. There are two recurring themes in these patterns.

  1. they all encapsulate knowledge about which concrete classes the system uses.
  2. they hide how instances of these classes are created and put together.

单例模式singleton model Pattern

工厂模式Factory model Pattern

Building Design Pattern

结构模式structural Design Patterns

Adapter design pattern

Intent

Convert the interface of a class into another interface clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces. Wrap an existing class with a new interface. Impedance match an old component to a new system

桥接模式Bridge design pattern

解决类爆炸

将实现和抽象分离

Decouple an abstraction from its implementation so that the two can vary independently. Publish interface in an inheritance hierarchy, and bury implementation in its own inheritance hierarchy. Beyond encapsulation, to insulation

"Hardening of the software arteries" has occurred by using subclassing of an abstract base class to provide alternative implementations. This locks in compile-time binding between interface and implementation. The abstraction and implementation cannot be independently extended or composed.

bstraction (abstract class) It defined the abstract interface i.e. behavior part. It also maintains the Implementer reference. RefinedAbstraction (normal class) It extends the interface defined by Abstraction. Implementer (interface) It defines the interface for implementation classes. This interface does not need to correspond directly to abstraction interface and can be very different. Abstraction imp provides an implementation in terms of operations provided by Implementer interface. ConcreteImplementor (normal class) It implements the Implementer interface.

装饰设计模式Decorator design pattern

Attach additional responsibilities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality. Client-specified embellishment of a core object by recursively wrapping it. Wrapping a gift, putting it in a box, and wrapping the box.

代理设计模式Proxy design pattern

Provide a surrogate or placeholder for another object to control access to it. Use an extra level of indirection to support distributed, controlled, or intelligent access. Add a wrapper and delegation to protect the real component from undue complexity.

You need to support resource-hungry objects, and you do not want to instantiate such objects unless and until they are actually requested by the client.

外观模式Facade Design Pattern

组合模式Composite Design Pattern

行为模式Behavior Design Patterns

Chain of Responsibility design pattern责任链

命令模式Command Design Pattern

模板方法模式Template Method Design Pattern

策略模式Strategy design pattern

观察者模式Observer Design Pattern

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

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

相关文章

Destroy销毁速度慢导致的错误

Destroy的销毁速度慢,而导致新加载的UI内容在Destroy代码后面,也随Destroy的GameObect销毁了。改用DestroyImmediate就可以保证新加入的内容不会被在此之前的销毁行为而销毁。 DestroyImmediate应当谨慎,因为它会立即销毁对象,不受…

【C++】-List经典面试笔试题总结-删除-插入-情况-合并-排序等经典操作

在C中,list 容器是标准模板库(STL)中的一种双向链表容器。以下是一些关于 list 的经典笔试面试题及解答: 1. list 容器的主要特点是什么? 解答: list 容器的主要特点包括: 它是一个双向链表结…

检索算法和技术的本质回顾

目录 一、数据结构和存储特点对检索效率的重大影响总结 二、数组和链表的线性结构检索 (一)基本分析 (二)使用二分查找提升数组检索效率 (三)灵活改造链表提升检索效率 问题背景 解决方案 歌曲块链…

循序渐进丨使用 Python 向 MogDB 数据库批量操作数据的方法

当我们有时候需要向数据库里批量插入数据,或者批量导出数据时,除了使用传统的gsql copy命令,也可以通过Python的驱动psycopg2进行批量操作。本文介绍了使用psycopg2里的executemany、copy_from、copy_to、copy_expert等方式来批量操作 MogDB …

ES6的Set与Map

在ES6之前,我们存储数据的结构主要有两种:数组、对象,而在ES6中新增了另外两种数据结构:Set、Map。 一、什么是Set? Set是ES6新增的数据结构,类似数组,但是它的元素成员是唯一的。 Set的使用&am…

[C++][算法基础]求a的b次方模p的值(快速幂)

给定 n 组 ,对于每组数据,求出 的值。 输入格式 第一行包含整数 n。 接下来 n 行,每行包含三个整数 。 输出格式 对于每组数据,输出一个结果,表示 的值。 每个结果占一行。 数据范围 1≤n≤100000, 1≤≤2 …

移动Web学习09-响应式布局bootstrap案例开发

3、综合案例-AlloyTeam移动全端 准备工作 HTML 结构 <title>腾讯全端</title> <link rel"shortcut icon" href"favicon.ico" type"image/x-icon"> <!-- 层叠性&#xff1a;咱们的css 要 层叠 框架的 --> <link rel&…

匿名函数与gorm中的Transaction事务方法

整理下go中的匿名函数&#xff0c;项目中很多地方都在用。 1、函数类型的变量 Go中&#xff0c;函数也是一种数据类型。定义一个函数&#xff0c;把这个函数赋值给一个变量&#xff0c;这个变量就是函数类型的变量&#xff0c;用这个变量等价于直接调函数&#xff1a; packa…

数字阅览室解决方案

一、方案概述 “数字阅览室”概念一经提出&#xff0c;就得到了广泛的关注&#xff0c;纷纷组织力量进行探讨、研究和开发&#xff0c;进行各种模型的试验。随着数字地球概念、技术、应用领域的发展&#xff0c;数字阅览室已成为数字地球家庭的成员&#xff0c;为信息高速公路…

介绍TCP窗口

在TCP通信中&#xff0c;TCP窗口是用于控制发送方发送数据的速率的机制之一。TCP窗口大小会根据网络情况和接收方的处理能力进行动态调整&#xff0c;以最大化网络吞吐量并减少拥塞和丢包的风险。 当发送方以较快速度发送TCP数据包时&#xff0c;TCP窗口大小可能会自动调整&am…

高频前端面试题汇总之JavaScript篇(上)

一、数据类型 1. JavaScript有哪些数据类型&#xff0c;它们的区别&#xff1f; JavaScript共有八种数据类型&#xff0c;分别是 Undefined、Null、Boolean、Number、String、Object、Symbol、BigInt。 其中 Symbol 和 BigInt 是ES6 中新增的数据类型&#xff1a; Symbol 代…

如何免费申请长期HTTPS证书?

长期HTTPS证书申请步骤&#xff1a; 第一步&#xff1a;确定证书类型 根据你的网站需求&#xff0c;选一种适合的HTTPS证书。一般有这几种&#xff1a; - 域名型&#xff08;DV&#xff09;证书&#xff1a;最基础&#xff0c;验证你对域名的所有权&#xff0c;适合个人网站或…

构建有序链表,有序链表的归并,反转链表

本次将对于构建有序链表&#xff0c;有序链表的归并&#xff0c;反转链表&#xff0c;进行一一介绍和代码分享。 首先是一些链表中的基本的函数&#xff1a; Node* creatList() {Node* headNode (Node*)malloc(sizeof(Node));assert(headNode);headNode->next NULL;retu…

海信电视:中国游戏的影像“黑神话”

【潮汐商业评论/文】 《西游记》最后一难中&#xff0c;通天河老鼋回唐三藏“何时才能修成正果”&#xff0c;《黑神话&#xff1a;悟空》也曾面临这个拷问&#xff0c;如今海信电视与它正在共同回答这个命题。 自2020年发布预告片震动行业后&#xff0c;这部游戏就承载着太多…

小程序插件引入宿主的函数

微信小程序的插件和宿主应用是独立的&#xff0c;插件无法直接通过 require 引用宿主应用中的文件。错误信息 Plugin module "" is not defined 表明你尝试在插件中使用了 require 来加载一个不存在的模块。 当需要在插件中使用宿主的某些方法时&#xff0c;必须通过…

Shader 渐变屏幕

渐变 前置工作&#xff0c;创建缓冲&#xff0c;对顶点着色器传递顶点数据 function main() {var canvas document.getElementById(webgl);var gl getWebGLContext(canvas);if (!initShaders(gl, VSHADER_SOURCE, FSHADER_SOURCE)) returnvar n initVertexBuffers(gl); }fu…

HBM 发展史与前景(持续更新)

主页&#xff1a; 元存储博客 文章目录 前言1. JEDEC 规范2. HBM 发展历程3. HBM 应用场景4. HBM 市场前景5. 发展挑战 翻译自&#xff1a; https://namu.wiki/w/HBM 前言 NVIDIA H2 上的 HBM100e。 1. JEDEC 规范 2. HBM 发展历程 HBM技术曾被视为一种噱头&#xff0c;因为它…

PSAvatar:一种基于点的可变形形状模型,用于3D高斯溅射的实时头部化身创建

PSAvatar: A Point-based Morphable Shape Model for Real-Time Head Avatar Creation with 3D Gaussian Splatting PSAvatar&#xff1a;一种基于点的可变形形状模型&#xff0c;用于3D高斯溅射的实时头部化身创建 Zhongyuan Zhao1,2, Zhenyu Bao1,2, Qing Li1, Guoping Qiu3,…

工时管理软件全攻略,8大关键因素一网打尽!

工时管理往往与项目管理与人力资源结合起来&#xff0c;考察每位员工的绩效指标。可以说&#xff0c;工时管理软件至关重要。什么叫工时管理&#xff1f;考虑到工时管理软件的八个关键要素包含&#xff1a;功能、使用体验、集成能力、扩展性、成本效率、安全隐私、技术支持、用…

javaWeb项目-智慧餐厅点餐管理系统功能介绍

项目关键技术 开发工具&#xff1a;IDEA 、Eclipse 编程语言: Java 数据库: MySQL5.7 框架&#xff1a;ssm、Springboot 前端&#xff1a;Vue、ElementUI 关键技术&#xff1a;springboot、SSM、vue、MYSQL、MAVEN 数据库工具&#xff1a;Navicat、SQLyog 1、JavaScript Java…