patterns overview state pattern decorator pattern state and decorator patterns downloads references home
about three-ten software created with contact
State and Decorator Patterns: Source Code  

Sample code in C++

This sample code provides a real-world example of how to use the state and decorator patterns. The sample code is spread over five (5) files: gamblerNstates.h, gamblers.cpp, states.cpp, decorators.cpp, and main.cpp.

// State and Decorator pattern sample code in C++




Sample code in Java

This sample code provides a real-world example of how to use the state and decorator patterns. The sample code is spread over five (5) files: Gambler.java, GamblerWithCar.java, State.java, GamblerDecorator.java, and Main.java.

// State and Decorator pattern sample code in Java