DEV Community

Coder
Coder

Posted on • Originally published at itscoderslife.wordpress.com on

Behavioral Patterns – Thumb Rules

This post is directly copied from sourcemaking, just to make it easy for readers to access this piece of knowledge.

Rules for how and when to apply :

  1. Behavioral patterns are concerned with the assignment of responsibilities between objects, or, encapsulating behavior in an object and delegating requests to it.
  2. Chain of responsibility, Command, Mediator, and Observer, address how you can decouple senders and receivers, but with different trade-offs. Chain of responsibility passes a sender request along a chain of potential receivers.
  3. Command normally specifies a sender-receiver connection with a subclass.
  4. Mediator has senders and receivers reference each other indirectly. Observer defines a very decoupled interface that allows for multiple receivers to be configured at run-time.
  5. Chain of responsibility can use Command to represent requests as objects.
  6. Chain of responsibility is often applied in conjunction with Composite. There, a component’s parent can act as its successor.
  7. Command and Memento act as magic tokens to be passed around and invoked at a later time. In Command, the token represents a request; in Memento, it represents the internal state of an object at a particular time. Polymorphism is important to Command, but not to Memento because its interface is so narrow that a memento can only be passed as a value.
  8. Command can use Memento to maintain the state required for an undo operation.
  9. MacroCommands can be implemented with Composite.
  10. A Command that must be copied before being placed on a history list acts as a Prototype.
  11. Interpreter can use State to define parsing contexts.
  12. The abstract syntax tree of Interpreter is a Composite (therefore Iterator and Visitor are also applicable).
  13. Terminal symbols within Interpreter’s abstract syntax tree can be shared with Flyweight.
  14. Iterator can traverse a Composite. Visitor can apply an operation over a Composite.
  15. Polymorphic Iterators rely on Factory Methods to instantiate the appropriate Iterator subclass.
  16. Mediator and Observer are competing patterns. The difference between them is that Observer distributes communication by introducing “observer” and “subject” objects, whereas a Mediator object encapsulates the communication between other objects. We’ve found it easier to make reusable Observers and Subjects than to make reusable Mediators.
  17. On the other hand, Mediator can leverage Observer for dynamically registering colleagues and communicating with them.
  18. Mediator is similar to Facade in that it abstracts functionality of existing classes.
  19. Mediator abstracts/centralizes arbitrary communication between colleague objects, it routinely “adds value”, and it is known/referenced by the colleague objects (i.e. it defines a multidirectional protocol). In contrast, Facade defines a simpler interface to a subsystem, it doesn’t add new functionality, and it is not known by the subsystem classes (i.e. it defines a unidirectional protocol where it makes requests of the subsystem classes but not vice versa).
  20. Memento is often used in conjunction with Iterator. An Iterator can use a Memento to capture the state of an iteration. The Iterator stores the Memento internally. State is like Strategy except in its intent.
  21. Flyweight explains when and how State objects can be shared.
  22. State objects are often Singletons.
  23. Strategy lets you change the guts of an object. Decorator lets you change the skin.
  24. Strategy is to algorithm. as Builder is to creation.
  25. Strategy has 2 different implementations, the first is similar to State. The difference is in binding times (Strategy is a bind-once pattern, whereas State is more dynamic).
  26. Strategy objects often make good Flyweights.
  27. Strategy is like Template method except in its granularity.
  28. Template method uses inheritance to vary part of an algorithm. Strategy uses delegation to vary the entire algorithm.
  29. The Visitor pattern is like a more powerful Command pattern because the visitor may initiate whatever is appropriate for the kind of object it encounters.

Top comments (0)