Implement behavior with abstract state pattern

From CSSEMediaWiki
Revision as of 23:48, 1 September 2009 by Aidan (Talk | contribs)
Jump to: navigation, search

Defining the behaviour of a class without defining any of the data structure makes your class very flexible. By delaying the specification of implementation details we make class hierarchies that are more extensible. This allows us to follow the Once and only once principle, and allows subclases to adapt to changing space and efficiency requirements.

What to do

When you are defining your base class, implement all the functionality that the public interface requires. Every time you find that you require some data from the class define an abstract accessor method instead of an instance variable. Later, a class that extends your base class can fill in all the details of the data structure and the accessor methods. This makes your class very flexible to accommodate new special cases and variations.

See also

Personal tools