up vote 2 down vote favorite
1
share [g+] share [fb]

The effectiveness of a "modularization" is dependent upon the criteria used in dividing the system into modules.

What I want is, suggest some criteria which can be used in decomposing a system into modules.

link|improve this question

A similar thread exist here: stackoverflow.com/questions/413247/… – Groo Apr 24 '09 at 11:22
feedback

4 Answers

up vote 4 down vote accepted

Cohesion: the functionality in a module is related.

Low coupling: you have minimum dependencies between modules.

Coordinated lifecycle: changes to functionality within a module tends to occur at the same time. Usually a consequence of high cohesion.

link|improve this answer
feedback

I think the Single Responsibility Principle would be a good guide. Try to define responsibilities for each modules, and make each module be responsible for its own thing.

See http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod

link|improve this answer
feedback

Interesting reading too: http://www.cs.umd.edu/class/spring2003/cmsc838p/Design/criteria.pdf

link|improve this answer
feedback

It is very old question.

  • Module is work assignment to a programmer or group of programmers. This also is the unit of change.
  • Low coupling and cohesion are metrics for estimate quality of relationships between modules but they are not useful for to do decomposition.
  • The decomposition should made using "information hiding" as a criterion.
  • Introduction with examples and description of process based on "information hiding" principle: http://www.sqrl.ul.ie/Downloads/Lecture2.pdf.
  • State of art of this question is software product line topic.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.