Architecture.SOLID-Principles
SOLID Principles
Reference
1. Single Responsibility
http://en.wikipedia.org/wiki/Single_responsibility_principle (ToRead)
2. Open/Closed
http://en.wikipedia.org/wiki/Open/closed_principle
3. Liskov Substitution
http://en.wikipedia.org/wiki/Liskov_substitution_principle (ToRead)
4. Interface Segregation
http://en.wikipedia.org/wiki/Interface_segregation_principle
5. Dependency Inversion
http://en.wikipedia.org/wiki/Dependency_inversion_principle
6. Solid Principle In Detail (AAAA+) (To Read)
https://www.codeproject.com/articles/1009577/solid-principle-in-detail
7. S.O.L.I.D: The First 5 Principles of Object Oriented Design
简单介绍S.O.L.I.D
8. The Principles of OOD (AAAA+) (To Read)
http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod
9. S is for Single Responsibility Principle
https://realm.io/news/donn-felker-solid-part-1/
10. Avoiding Interface Pollution with the Interface Segregation Principle (AAAA+)
The Benefits of Role Interfaces in SOLID Code
https://medium.com/@severinperez/avoiding-interface-pollution-with-the-interface-segregation-principle-5d3859c21013
11. Understanding SOLID Principles: Interface Segregation Principle (AAAA+)
https://codeburst.io/understanding-solid-principles-interface-segregation-principle-b2d57026cf6c
Understanding SOLID Principles: Open Closed Principle
https://codeburst.io/understanding-solid-principles-open-closed-principle-e2b588b6491f
12. Interface Segregation Principle (ISP)
https://www.oodesign.com/interface-segregation-principle.html
13. Interface Segregation Principle
and how to interpret it
https://hackernoon.com/interface-segregation-principle-bdf3f94f1d11
14. The Open-Closed Principle
Extending Your Entities Correctly
https://medium.com/swift2go/the-open-closed-principle-extending-your-entities-correctly-edf9d3898826
Others
Plug-in
http://en.wikipedia.org/wiki/Plug-in_(computing)
Architecture.SOLID-Principles的更多相关文章
- The SOLID principles(未完,待续)
The SOLID principles The SOLID principles of Object Oriented Design include these five principles: S ...
- [中英对照]Introduction to DPDK: Architecture and Principles | DPDK概论: 体系结构与实现原理
[中英对照]Introduction to DPDK: Architecture and Principles | DPDK概论: 体系结构与实现原理 Introduction to DPDK: ...
- SOLID Principles
Intention: more understandable, easier to maintain and easier to extend.(通过良好的设计使得代码easy and simple, ...
- 浅谈 SOLID 原则的具体使用
SOLID 是面向对象设计5大重要原则的首字母缩写,当我们设计类和模块时,遵守 SOLID 原则可以让软件更加健壮和稳定.那么,什么是 SOLID 原则呢?本篇文章我将谈谈 SOLID 原则在软件开发 ...
- 系统架构的定义(与系统)-architecture
architecture⟨system⟩ fundamental concepts or properties of a system in its environment embodied in i ...
- What is Systems Architecture ?
What is Systems Architecture ? Systems Architecture is a generic discipline to handle objects (exi ...
- [译]开发者须知的SOLID原则
原文:SOLID Principles every Developer Should Know – Bits and Pieces SOLID Principles every devloper sh ...
- 2.1 OOP & SOLID
OOP & SOLID Implementing DDD highly relies on the Object Oriented Programming (OOP) and SOLID pr ...
- angularJS 系列(三)- 自定义 Service
参考:http://viralpatel.net/blogs/angularjs-service-factory-tutorial/ https://www.pluralsight.com/blog/ ...
随机推荐
- vue样式绑定
vue 绑定class 和style 有相同的地方,可以是数组和对象,对于class class是真实的在css样式中添加的,只不过在元素中添加需要:class这样代表绑定,然后这个class作为对象 ...
- jquery val() text() html()的区别
value()主要用在表单元素上,如果其他的元素获取value是通过attract()的方法,text()是获取元素的纯文本,如果text(“content”)就会更改元素的文本内容:html()获取 ...
- native和webview切换
native和webview 标签(空格分隔): native和webview 现在目前大部分的app都是native和webview混合,对应的native上的元素可以通过uiautomatorvi ...
- NBU 还原LINUX ORACLE 数据库(EHR)
一.E-HR数据库(全备)恢复 目录 一.E-HR数据库(全备)恢复... 1 1. 使用bplist 命令读取备份文件... 1 2. 启动到nomount状态... 2 3. 利用rman还原控制 ...
- html自定义弹框
一.要实现的功能 1.弹框弹出时有遮罩 2.弹框内的文字过多时右侧有滚动条 3.根据执行结果变更弹框title的样式 二.具体实现 思路:定义一个有宽高的div,默认隐藏,当要显示时,设置为dis ...
- jQuery插件开发的两种方法及$.fn.extend的详解(转)
jQuery插件开发的两种方法及$.fn.extend的详解 jQuery插件开发分为两种:1 类级别.2 对象级别,下面为大家详细介绍下 jQuery插件开发分为两种: 1 类级别 类级别你可以 ...
- Java Web开发和Python Web开发之间的区别
今天的文章讨论了Java Web开发和Python Web开发之间的区别.我不鼓励我们在这里从Java Web迁移到Python Web开发.我只是想谈谈我的感受.它不一定适合所有情况,仅供我们参考. ...
- Windows配置Java环境
https://jingyan.baidu.com/article/84b4f56598d88b60f7da3272.html
- no module named cv2
运行python脚本时报错: ImportError: No module named cv2 第一想法: 使用命令: pip install cv2 会报错找不到请求的版本 解决方法: 使用命令 p ...
- 牛客网Wannafly挑战赛15 B车辆安排(模拟)AND C 出队(规律)
传送门 :B题:点我 C题: 点我 题目描述 有n个队伍,每个队伍的人数小于等于5,每辆车最多坐5个人,要求一个队伍的人都在一辆车上,求最少的车数 输入描述: 第一行n第二行n个数,表示每个队伍的人数 ...