» The State pattern responds to object changes and can change its behaviour by switching to a different set of operations; » The State pattern can be seen as a dynamic version of the Strategy pattern.
Use When:
» You have objects that will change their behaviour at runtime, based on some context; » You have objects that will become complex, with many conditional branches.
//Define the Pattern Interface and Handler Objects.
//Define the IState interface to be used as the "blueprint" for the main State classes. public interfaceIState { void Deposit(Context context, double amount);
bool Withdraw(Context context, double amount);
bool PayInterest(Context context); }
//The RedState class (object) represents one particular state. public classRedState : IState { public void Deposit(Context context, double amount) { context.Balance += amount; if (context.Balance > 0) { context.State = newSilverState(); } }
public bool Withdraw(Context context, double amount) { context.Balance -= 15.00; Console.WriteLine("No funds available for withdrawal!\n"); return (false); }
//The SilverState class (object) represents another available state, and is able to update the State object as required. public classSilverState : IState { public void Deposit(Context context, double amount) { context.Balance += amount; UpdateState(context); }
//The GoldState class (object) represents another available state, and is able to update the State object as required. public classGoldState : IState { public void Deposit(Context context, double amount) { context.Balance += amount; UpdateState(context); }
//The Context class (object) initialises the State object and invokes methods on the State class (object). public classContext { publicIState State { get; set; } public double Balance { get; set; } private string _owner;
public Context(string owner) { _owner = owner; State = newSilverState(); }