A lecture note for exam revision.
To define a family of algorithms, put each of them into a separate class, and make their objects interchangeable.
Using switch
statement in one class makes the class too complex.
Use separate classes to implement different version of the algorithm. These classes are called strategies.
The original class, called context, has a field for storing a reference to one of the strategies. The context delegates the work to a linked strategy object instead of executing it on its own.
To let an object alter its behavior when its internal state changes during runtime. It appears as if the object changed its class.
Using if
or switch
statements, again, will make the class complex, and if more states need to be added, the whole class needs to be modified.
Create new classes for all possible states of an object and extract all state-specific behaviors into these classes.
The original object, called context, stores a reference to one of the state objects that represents its current state, and delegates all the state-related work to that object.
Both are behavioral patterns;
Strategy: alternative algorithms, one class per algorithm; client pick one algorithm to use via the common strategy interface;
State: different state/role of the same object, one class per state; client pick one state to use via the common object interface.
In State pattern, the particular states may be aware of each other and initiate transitions from one state to another, whereas strategies almost never know about each other.
To attach new behaviors to objects by placing these objects inside special wrapper objects that contain the behaviors.
Use a decorator (or can be called as a wrapper) to ‘enhance’ the object.
A wrapper is an object that can be linked with some target object. The wrapper contains the same set of methods as the target and delegates to it all requests it receives. However, the wrapper may alter the result by doing something either before or after it passes the request to the target, and this is where the ‘enhancement’ comes from.
Client code be like:
Another example (from the slides):
To compose objects into tree structures and then work with these structures as if they were individual objects.
Only makes sense when the core model structures like a tree.
Work with composite components and leaf components in a unified way, say, through a common interface.
Four participants:
Both are structural patterns.
Difference:
Composite is for object composition: composes multiple objects into a single one.
Decorator is for function/feature extension: adds additional features to a leaf object.
Decorator adds additional responsibilities to the wrapped object
Composite just “sums up” its children’s results.
Create a subscription mechanism to notify multiple objects about any events that happen to the object they’re observing.
Two main components:
Publisher-Subscriber pattern is a specific implementation of Observer pattern where:
Publisher = Subject
Subscriber = Observer
To create objects without exposing the instantiation logic to the client program.
Implementation
— Jun 2, 2022