Defer identification of state variables pattern

From CSSEMediaWiki
(Difference between revisions)
Jump to: navigation, search
Line 4: Line 4:
  
 
[[Image:deferred state variables 1.jpg]]
 
[[Image:deferred state variables 1.jpg]]
 +
 +
 +
== See also ==
 +
* [[Parallel inheritance hierarchies smell]]
 +
* [[Intelligent children pattern]]

Revision as of 03:29, 22 August 2008

Deferring identification of state variables is an approach to solving the Parallel Inheritance Hierarchies problem that sometimes appears in OO designs. The OO design below shows an example of the Parallel Inheritance Hierarchies problem. This design shows the abstract class Vehicle holding an Operator as one of it's fields. One problem with this a Car object might be able to have a Pilot as its Operator instead of a Driver.

More to come soon on this page.

Deferred state variables 1.jpg


See also

Personal tools