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.

Meyer's Five Principles

Small Interfaces

  • "If any two modules communicate at all, they should exchange as little information as possible" Meyer

Discussion

The goal of Meyer's small interfaces principle is to reduce coupling between classes. There are a two ways to interpret this principle, First, a small interface could mean that it has a small parameter list. Minimizing the number of parameters, regardless of the parameter's data type would have the tendency to reduce coupling. Second, a small interface could refer to the size of the individual parameters being minimized. In this case, you would also achieve a reduction in coupling by passing around smaller objects, since they would on average have less hooks to the rest of the code.

ftp://ftp.idc.ac.il/pub/courses/cs/oosc/ch1-3.ppt

This principle also has the tendency to improve cohesion, and could be seen as related to Skrien's principle of "A method should do one thing only and do it well". [Skrein, 87]. Methods taking a high number of parameters, on average, are probably doing several tasks and requiring several inputs, and would not be cohesive.

Another observation that could be made about methods with too many parameters, is that the parameters are somehow related and should be grouped together in a separate class.

Support for the small interface principle is provided in all of the major O-O languages, notably Java and C++.

Example

Explicit Interfaces

"If two modules communicate, this must be obvious from the text of either or both" Meyer

ftp://ftp.idc.ac.il/pub/courses/cs/oosc/ch1-3.ppt


Uniform-access

"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" Meyer

ftp://ftp.idc.ac.il/pub/courses/cs/oosc/ch1-3.ppt


Self-documentation

"The designer of a module should strive to make all information about the module part of the module itself" Meyer

Single-choice

"Whenever a software system must support a set of alternatives, one and only one module in the system should know their exhaustive list" Meyer

Links

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