联轴器选型_联轴器| 软件工程

联轴器选型

耦合 (Coupling)

In general terms, the term coupling is defined as a thing that joins together two objects. If we talk about software development, then the term coupling is related to the connection between two modules, i.e. how tight interaction do the two modules hold with each other is defined by coupling.

一般而言,术语“ 耦合”定义为将两个对象连接在一起的事物。 如果我们谈论软件开发,那么术语耦合与两个模块之间的连接有关,即,通过耦合来定义两个模块之间保持的紧密交互程度。

Hence, the term coupling is defined as follows: "“The measure of the degree of the interdependency of two modules on each other is known as coupling."

因此,术语“ 耦合”定义如下: ““两个模块相互依赖程度的度量称为耦合”。

It should be noted that a module that has high cohesion and low coupling is functionally independent.

应该注意的是,具有高内聚性和低耦合性的模块在功能上是独立的。

How can the coupling between two modules be defined?

如何定义两个模块之间的耦合?

The interconnection of interdependency between two modules is defined by the interface between them because any two modules cannot be connected if there exists no interface between them. Now, the level of coupling that exists among the two modules is defined by the number of data transfers that take place among them. If any of the modules (or both) is highly dependent on the data that the other module provides to it, then we say that the two modules are highly coupled. Else, we say that the two modules are loosely coupled or the coupling between the modules is low.

两个模块之间的相互依赖关系的互连由它们之间的接口定义,因为如果两个模块之间不存在接口,则任何两个模块都无法连接。 现在,两个模块之间存在的耦合级别由它们之间发生的数据传输数量定义。 如果任何一个模块(或两个模块)高度依赖于另一个模块提供给它的数据,那么我们说这两个模块是高度耦合的。 否则,我们说两个模块是松散耦合的,或者模块之间的耦合很弱。

Now, the term coupling is further classified into different classes which help us to quantitatively determine the level of coupling between two modules. The different classes of coupling are as follows:

现在,术语耦合被进一步分为不同的类别,这有助于我们定量确定两个模块之间的耦合级别。 耦合的不同类别如下:

coupling in software engineering

The sequence of the given classification is from high to low in a top-to-down manner. Now, let us define each of them to understand what they mean:

给定分类的顺序以从上到下的方式从高到低。 现在,让我们定义每个对象,以了解它们的含义:

Content Coupling: In the content coupling, the two modules are connected as they share the same content. What this means is that the content, i.e. the code of both the modules, has some parts in common which are the functions and methods that are used by both of the modules. This type of coupling is termed to be the strongest type of coupling.

内容耦合 :在内容耦合中,两个模块由于共享相同的内容而被连接。 这意味着内容(即两个模块的代码)具有某些共同点,这是两个模块所使用的功能和方法。 这种类型的耦合被称为最强的耦合类型。

Common Coupling: Two modules are said to be commonly coupled if they share the data using the same data items (i.e. the variables). These data items must be in global access to both of the modules so that both the modules can be able to access these data items.

通用耦合 :如果两个模块使用相同的数据项(即变量)共享数据,则称为通用耦合。 这些数据项必须对两个模块都具有全局访问权限,以便两个模块都能够访问这些数据项。

Control Coupling: If the data from the module is responsible for controlling the activities happening in another module, then these modules are said to be control coupled. Here, mostly, one or two bits of signal data are passed which controls the operations happening in some other module. A well-known example of this can be the set of flags of a module by some other module.

控制耦合 :如果来自模块的数据负责控制另一个模块中发生的活动,则可以说这些模块是控制耦合的。 在这里,大多数情况下,将传递一或两位信号数据,以控制其他模块中发生的操作。 众所周知的示例可以是某个其他模块对模块的标志集。

Stamp Coupling: Two modules are said to be stamp coupled if they both use a composite data item to interact with each other.

标记耦合 :如果两个模块都使用复合数据项相互交互,则称这两个模块为标记耦合。

Data Coupling: This type of coupling is the weakest one. Two modules are said to be data coupled if they communicate through some parameters. An example can be of the parameters that are passed to a function block.

数据耦合 :这种耦合是最弱的一种。 如果两个模块通过某些参数进行通信,则它们称为数据耦合。 一个示例可以是传递给功能块的参数。

翻译自: https://www.includehelp.com/basics/coupling-software-engineering.aspx

联轴器选型

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

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

相关文章

剑指 Offer 10- I. 斐波那契数列 (从重叠子问题到备忘录到dp数组迭代解法)

目录题目描述1、暴力递归法的重叠子问题2、备忘录解法3、dp数组迭代算法4、滚动数组优化5、参考链接题目描述 写一个函数,输入 n ,求斐波那契(Fibonacci)数列的第 n 项。斐波那契数列的定义如下: F(0) 0, F(1) 1 F…

C# 收邮件

C#没有内置收邮件的类,参考网络上的代码,针对POP3协议服务器使用 Jmail组件来收邮件,针对IMAP协议服务器使用LumiSoft.Net 。 另外,一般免费邮箱需要在邮箱设置中开启 POP3(或IMAP)、 SMTP服务才可以使用非…

HDU- 1754 I Hate It

http://acm.hdu.edu.cn/showproblem.php?pid1754 记住那让自己wa的地方。 I Hate It Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 29300 Accepted Submission(s): 11615 Problem Description很多学校流行…

mcq 队列_MCQ | 软件生命周期模型

mcq 队列Q1. Which of the following models is best suited when the requirements of the software are not decided and also the user is not sure about how he wants the user interface to look like? Q1。 当不确定软件的需求并且用户不确定自己希望用户界面看起来如何…

十、纺织品库存管理系统全部功能展示

一、系统主页面—Form1 系统运行加载页面,主要包含三个功能,①登录、②注册、③退出系统 程序运行图: 登录功能,跳转到登录页面 注册功能,跳转到注册页面 退出系统,程序结束运行 代码如下: …

leetcode 376. 摆动序列 思考分析

目录题目思路分析代码总结题目 如果连续数字之间的差严格地在正数和负数之间交替,则数字序列称为摆动序列。第一个差(如果存在的话)可能是正数或负数。少于两个元素的序列也是摆动序列。 例如, [1,7,4,9,2,5] 是一个摆动序列&am…

[EF在VS2010中应用Entity framework与MySQL

在VS2010中应用Entity framework与MySQL 罗朝辉 (http://www.cnblogs.com/kesalin/) 本文遵循“署名-非商业用途-保持一致”创作公用协议本文讲述了在VS2010中使用EF与MySQL的一个简单示例。 工具安装: 1,MySQL MySQL Community Server Connector/NET 6…

c++ cdi+示例_C ++“和”关键字示例

c cdi示例"and" is an inbuilt keyword that has been around since at least C98. It is an alternative to && (Logical AND) operator and it mostly uses with the conditions. “ and”是一个内置关键字,至少从C 98起就存在。 它是&&am…

Python上个手

Python,由吉多范罗苏姆(Guido van Rossum)在1989打发圣诞节放假时间的一门“课余”编程项目,至今已有二十多年的历史,语法简洁清晰,深受喜爱; 小窥 # 查看版本 python -V # 输出 print "he…

十、美化界面

一、背景图片 二、透明化处理 BackColor—web—Transparent 三、数据库建表语句 数据库 USE [fiber_yy] GO /****** Object: Table [dbo].[yy_user_record] Script Date: 06/20/2022 18:54:48 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADD…

如何写出优美的代码(二)

(本文思想基本来自于经典著作《重构》一书) 上一篇 http://www.cnblogs.com/ceys/archive/2012/03/05/2379842.html#commentform 上一篇文章主要讲了怎么给函数整容。现在我们大家基本上都使用面向对象语言,什么样的“对象”才是优美的呢&…

转:链表相交问题 详解

源地址:http://blog.163.com/bbluesnow126/blog/static/27784545201251051156817/ 链表相交问题 2012-06-10 17:15:37| 分类: 算法 | 标签:微软面试题 |字号 订阅 1、如何判断一个单链表有环 2、如何判断一个环的入口点在哪里 3、如何知…

VS 如何修改C++编译标准

第一步,打开项目资源管理器的属性页面 第二步,选择配置属性->C/C>语言->C语言标准 第三步,选择合适的标准,一般来说选最新即可

维吉尼亚密码和一次性密码本_密码学中的一次性密码

维吉尼亚密码和一次性密码本The One-time Pad cipher is almost similar to the Vernam cipher, as, like the vernam cipher, this cipher technique also encrypts the plain text by working on the binary level of the text. The only difference between the two is that…

十一、纺织面料下架功能的实现

一、数据库 数据库仍用yy_textile表,前几篇博文都叙述过这里就不再叙述 在fiber_yy数据库下创建yy_textile表 初始数据库信息 二、页面 admin_undercarriage 三、代码实现 admin_undercarriage using System; using System.IO; using System.Data; using S…

svg和canvas的应用场景分析【转载】

原文地址:http://blogs.msdn.com/b/weizhong/archive/2011/07/16/canvas-svg.aspx 思考什么时候使用Canvas 和SVG wzhong 15 Jul 2011 9:07 PM 0HTML5 Canvas 和 SVG 是 IE9 中引入的两项令人激动的图形功能。上周在拉斯维加斯举办的 MIX11 大会对这两个功能进行了介…

【C++grammar】文件系统以及path类使用

目录1.文件系统概述1、关于路径2、如何将某个路径下的所有文件递归地找出来?2.路径类及操作1、path类的成员函数2、path类的非成员函数示例1:展示C17中的path对象的用法示例2:展示Path类中用于分解路径成分的函数示例3:展示path相…

scala hashmap_如何在Scala中将Hashmap转换为Map?

scala hashmapLets first understand what are maps and hashmaps? 首先让我们了解什么是map和hashmap ? map in Scala is a collection that stores its elements as key-value pairs, like a dictionary. Scala中的map是一个集合,将其元素存储为键值…

十二、所有功能实现效果演示

一、系统项目架构 Ⅰ,fiber_yy数据库下有五张表 yy_admin:管理员登录账号和密码 yy_textile:纺织面料数据信息 yy_textile_record:用户购买纺织面料信息所存储的面料流水信息 yy_user:用户登录注册信息 yy_user_reco…

行业软件之PTV微观软件VISSIM4.3 5.0 5.1 5.2 5.3 5.4下载和相关资料

他是干什么的:http://baike.baidu.com/view/3656765.htm 中国代理销售的公司的网址:辟途威交通科技(上海)有限公司 官网:http://www.ptvchina.cn/ 看看视频中软件的运行效果:http://v.youku.com/v_show/id_XMzExMjg1MDEy.html 如何…