Modular programming

This is an old revision of this page, as edited by Paul August (talk | contribs) at 03:08, 31 October 2004. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Modularity is the property of computer programs that measures the extent to which they have been composed out of seperate parts called modules.

Programs that have many direct interrelationships between any two random parts of the program code are less modular than programs where those relationships occur mainly at well-defined interfaces between modules.

Modular programming techniques are those which increase modularity. (See also: structured programming and procedural programming.)

See also: