3、GRASP原则三: 低耦合 Low Coupling
   How to support low dependency, low change impact and increased reuse?

   如何保证设计方案支持低的依赖性、低的变化影响度、增加可重用性?
3.2 耦合的定义Coupling

   耦合: 一个元素与其它元素的联接、感知以及依赖程度的度量

    Measure of how strongly one element is: connected to、 has knowledge of、relies on another element    比较

     Cohesion,内聚: 模块内的操作之间联系紧密的程度

     Coupling,耦合: 两个子模块之间联系的强度

   高耦合带来的问题 Problems with High Coupling

     “牵一发动全身”Forced local changes because of changes in related class

     A依赖B,A与B之间有耦合,一旦B变化了,A就会受影响

   元素孤立是无法理解 Harder to understand in isolation

   元素很难重用 Harder to reuse — drags in more classes
3.3 GRASP rule3: Low Coupling

   Name: Low Coupling

   Problem:

     How to support low dependency, low change impact and increased reuse?

   Solution:

     Assign responsibility so coupling remains low.

       Use this principle to evaluate alternatives

       All other things being equal prefer the low coupling solution
   Note: Information Expert encourages Low Coupling

   Why most secret service (spy) is one-way contact? 为什么特 务工作都是单线联系?
3.4 Discuss: Low Coupling

   低耦合是所有设计决策时自然而然要考虑的原则

    Low Coupling is a principle to keep in mind during all design decisions; it is an underlying goal to     continually consider

   低耦合是一种评估原则,是设计师用来对设计方案进行评价的一种指标

    It is an evaluative principle that a designer applies while evaluating all design decisions

   X与Y存在耦合的情况,例如

     X has an attribute that refers to Y

     X calls on services of Y

     X has a method that references Y (parameter, local variable, or return value)

     X is a direct or indirect subclass of Y

     Y is an interface, and X implements that interface
   低耦合支持类的设计相对独立,减少了变化带来的相互影响

    Low Coupling supports the design of classes that are more independent, which reduces the impact of     change

   低耦合与其他的原则,如信息专家、高内聚必须综合考虑

   不能单独考虑低耦合

     “是药,三分毒”

   继承关系中,子类与父类的耦合非常紧密 A subclass is strongly coupled to its superclass.

     所以, 能用组合的地方不要用继承

   There is no absolute measure of when coupling is too high

     低耦合不具备可操作性!类似“只可意会,不可言传”
   极端情况,类之间没有耦合

     不希望这种情况出现

       because a central metaphor of object technology is a system of connected objects that         communicate via messages

       Too little coupling means we aren’t a “collaborating community of objects”

     这样会形成很差的设计

       产生少量的不内聚、臃肿、行为复杂的对象,承担了全部的工作,这些类 可能独立工作,成为

         一 个个简单的数据仓库

   类之间存在适度的耦合是正常的、必须的

     这样才能产生面向对象系统,其任务是由相互连接的对象通过协作来完成

      to create an object-oriented system in which tasks are fulfilled by a collaboration

      between connected objects
3.4 Discuss:Low Coupling— When Not To

   “背靠大树好乘凉”

     因为大树不会倒、不常变、稳定

   High coupling to stable elements and to pervasive elements is seldom a problem

   e.g. language libraries  For example, a Java J2EE application can safely couple itself to the J

    ava libraries (java.util, and so on)  because they are stable and widespread

7.3 GRASP原则三: 低耦合 Low Coupling的更多相关文章

  1. C# 低耦合 高内聚

    低耦合 loosely Coupling 松散的耦合关系=炮友 couple=夫妻 夫妻=法律约束.家庭.生活.财产.繁衍 炮友:吃喝玩乐,不会产生感情方面的依赖       内聚性 内聚性又称块内联 ...

  2. 面系那个对象开发原则.高内聚.低耦合+Python安装详细教程+print输出带颜色的方法

    面系那个对象开发原则.高内聚.低耦合 软件设计中通常用耦合度和内聚度作为衡量模块独立程度的标准.划分摸块的一个准则就是高内聚低耦合. 这是软件工程中的概念,是判断设计好坏的标准,主要是面向OO的设计, ...

  3. 对C++中高内聚,低耦合原则的理解

    1.C语言是面向过程的语言,采用模块化的设计思想,每个功能划分为一个模块,是以函数为单位的. 2.C++是面向对象的语言,采用类设计的思想,因此C++中的模块是以类为基本单位的. 高内聚,低耦合能够使 ...

  4. 7.7 GRASP原则七: 纯虚构 Pure Fabrication

    GRASP原则七: 纯虚构 Pure Fabrication  如果依据信息专家原则获得的解决方案不合适,既不想违反低耦合.高内聚,也不想违 反其他的原则, 该如何把职责分配给对象?  左右为难… ...

  5. 7.5 GRASP原则五:高内聚 High Cohesion

    GRASP原则五:高内聚 High Cohesion  How to keep objects focused, understandable and manageable, and as a si ...

  6. 7.4 GRASP原则四:控制器 Controller

    4.GRASP原则四:控制器 Controller  What first object beyond the UI layer receives and co-ordinates (control ...

  7. 7.2 GRASP原则二:信息专家 Information Expert

    2.GRASP原则二:信息专家 Information Expert  What is a general principle of assigning responsibility to obje ...

  8. 运用GRASP原则来做uml交互类图-------pos机实例

    重要的几个GRASP原则:1.控制器模式   2.创建者模式 (原则)3.信息专家模式(原则) 4. 高内聚 低耦合   这里所说的模式并不是java中针对具体的事件的设计模式 主成功场景的几个操作: ...

  9. iOS:CYLTabBarController【低耦合集成TabBarController】

    导航 与其他自定义TabBarController的区别 集成后的效果 项目结构 使用CYLTabBarController 第一步:使用CocoaPods导入CYLTabBarController ...

随机推荐

  1. springboot+@async异步线程池的配置及应用

    示例: 1. 配置 @EnableAsync @Configuration public class TaskExecutorConfiguration { @Autowired private Ta ...

  2. MySql查看与修改auto_increment方法(转)

    add by zhj:  在创建表时,如果没有显式的指定AUTO_INCREMENT的值,那它默认是1 原文:https://blog.csdn.net/fdipzone/article/detail ...

  3. ext 的controller中的refs的使用方法

    通过ext api 可以知道ext 的controller中有个refs的属性,对于这个属性 文档上是这么说的:配置数组构建页面上的视图的引用. 我并看不懂,接下来说的是我对这个refs的理解. 对这 ...

  4. sql 范式:1NF、2NF、3NF、BCNF(函数依赖)

    第一范式(1NF) 每个属性都是不可分的基本数据项.(必须有主键,列不可分) eg:非第一范式的表:(列可再分) 学院名称 高级职称人数 教授 副教授 信电学院 3 34 管理学院 5 23 外语学院 ...

  5. 【托业】【跨栏阅读】错题集-REVIEW1

    05 06 REVIEW 1

  6. python框架之Django(11)-中间件

    介绍 在django中,中间件其实就是一个类,在一个请求到来和这个请求结束之前,django会根据自己的规则在合适的时机执行中间件中相应的方法. 在django项目的settings模块中,有一个 M ...

  7. Potatso Lite:[限免]ios 自由上网利器

      为入门用户打造的轻量级网络代理工具,支持通知中心开关.扫描二维码或手动输入代理,简洁好用.支持多种代理. Potatso Lite:appstroe 下载 重要提醒:中国区Appstroe可下载. ...

  8. Oracle数据库基础入门《一》Oracle服务器的构成

    Oracle数据库基础入门<一>Oracle服务器的构成 Oracle 服务器是一个具有高性能和高可靠性面向对象关系型数据库管理系统,也是一 个高效的 SQL 语句执行环境. Oracle ...

  9. #WEB安全基础 : HTTP协议 | 0x8 HTTP的Cookie技术

    说道Cookie,你喜欢吃饼干吗? 这里的Cookie不是饼干=_= HTTP不对请求和响应的通信状态进行保存,所以被称为无状态协议,为了保持状态和协议功能引入了Cookie技术 Cookie技术在请 ...

  10. 灵雀云容器PaaS平台助力知名股份制银行金融科技革新

    互联网.科技和金融的碰撞给银行业带来巨大影响.IT技术起初是传统金融提升效率的工具和方法,随着新技术的演进,技术成为驱动变革的核心要素.Fintech金融科技以技术和数据为驱动,用创新的方法改变了金融 ...