Bridge Pattern vs Strategy Pattern

  • the UML class diagram for the Strategy is the same as the diagram for the Bridge. However, these two design patterns aren’t the same in their intent. While the Strategy pattern is meant for behavior, the Bridge pattern is meant for structure
  • the coupling between the context and the strategies is tighter than the coupling between the abstraction and the implementation in the Bridge pattern