CSC/ECE 517 Summer 2008/wiki3 8 jb: Difference between revisions
Line 9: | Line 9: | ||
===Explicit Interfaces=== | ===Explicit Interfaces=== | ||
The principle of explicit interfaces says, "Whenever two modules A and B communicate, this must be obvious from the text of A or B or both" | |||
[ftp://ftp.idc.ac.il/pub/courses/cs/oosc/ch1-3.ppt]. | |||
===Uniform-access=== | ===Uniform-access=== | ||
===Self-documentation=== | ===Self-documentation=== |
Revision as of 02:12, 22 July 2008
This wiki will explore some of Bertrand Meyer's contribution to OO design, including the principles of small interfaces, explicit interfaces, uniform-access, self-documentation, and single-choice. We intend to show good examples of each principle, discuss their support in languages other than Eiffel, and discuss whether it is difficult to follow these principles in certain OO languages.
Background
Principles
Small Interfaces
The principle of small interfaces says, if any two modules communicate at all, they should exchange as little information as possible [1]. Following this principle tends to lead to interfaces where native data types are preferred over classes as arguments. This serves to reduce coupling between modules, and reduce the runtime overhead required to pass parameters from caller to callee.
Explicit Interfaces
The principle of explicit interfaces says, "Whenever two modules A and B communicate, this must be obvious from the text of A or B or both" [2].