Johnson and Foote 1988

From CSSEMediaWiki
Revision as of 03:58, 5 August 2008 by Warwick Irwin (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Designing reusable classes, by RalphJohnson & BrianFoote, BR Journal of Object-Oriented Programming, June/July 1988, Volume 1, Number 2, pages 22-35.

The text is available from the links below.

Analysis

This early paper has been very influential. It is long, and uses Smalltalk examples and terminology, but it is worth working through.

It presents one of the earliest collections of OOD heuristics: Johnson and Foote's heuristics.

It is also the original (as far as I know) paper to Favor composition over inheritance.

White box and black box reuse

One of the central themes of this paper is that there are two main ways of designing classes for reuse:

* White box reuse, in which new classes should reuse existing classes by inheriting from them.
* Black box reuse, in which new classes should reuse existing classes by composing them.

Black box reuse is preferred to white box, because the classes are less exposed to each other (i.e. they have weaker coupling). However, white box reuse is still recognised as a valuable technique.

In terms of statically typed languages like Java:

* Black box reuse allows use only of the public interface of a server class;
* White box reuse allows use of both the public and protected interfaces of the server class.

See also

* Electronic copy on web
* Local copy
* Software reuse
* Favor composition over inheritance
Personal tools