CSC/ECE 517 Summer 2008/wiki3 8 jb

From Expertiza_Wiki
Jump to navigation Jump to search

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

Bertrand Meyer is a professor of Computer Science at ETH Zurich, and is the creator of the Eiffel programming language. Meyer authored a book, titled Object-Oriented Software Construction in which he presented five principles of good Object-oriented design.

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. The idea of a central data source is key to implementation of small interfaces.

Explicit Interfaces

The principle of explicit interfaces says, "If two modules communicate, this must be obvious from the text of either or both" [2].

Uniform-access

The principle of uniform access says, "All services offered by a module should be available through a uniform notation, which does not betray whether they are implemented through storage or through computation" [3].

Self-documentation

The principle of self-documentation says, "The designer of a module should strive to make all information about the module part of the module itself" [4].

Single-choice

The principle of single-choice says, "Whenever a software system must support a set of alternatives, one and only one module in the system should know their exhaustive list" [5]. [6]

Links

Wikipedia page for Bertrand Meyer
Lesson on OO drawing on Bertrand's principles
[7]