码迷,mamicode.com
首页 > 其他好文 > 详细

fan-in, fan-out

时间:2015-06-13 21:28:17      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

 
tag: software engineering, fan-in, fan-out

什么是扇入和扇出?  

在软件设计中,扇入和扇出的概念是指应用程序模块之间的层次调用情况。 

按照结构化设计方法,一个应用程序是由多个功能相对独立的模块所组成。 

扇入:是指直接调用该模块的上级模块的个数。扇入大表示模块的复用程序高。 

扇出:是指该模块直接调用的下级模块的个数。扇出大表示模块的复杂度高,需要控制和协调过多的下级模块;但扇出过小(例如总是1)也不好。扇出过 大一般是因为缺乏中间层次,应该适当增加中间层次的模块。扇出太小时可以把下级模块进一步分解成若干个子功能模块,或者合并到它的上级模块中去。 

设计良好的软件结构,通常顶层扇出比较大,中间扇出小,底层模块则有大扇入。 

https://en.wikipedia.org/wiki/Fan-in
from wiki pedia: Fan-in is the number of inputs a gate can handle. For instance the fan-in for the AND gate shown in the figure is 3. Physical logic gates with a large fan-in tend to be slower than those with a small fan-in. This is because the complexity of the input circuitry increases the input capacitance of the device.
技术分享

fan-in, fan-out

标签:

原文地址:http://www.cnblogs.com/abapscript/p/4574085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!