Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 11, 2022 07:26 pm GMT

The difference between Design Patterns and Design Principles

Design Patterns

Design Patterns are techniques for how to design and architect your code. They are low-level solutions related to the implementation to real-world problems that arise again and again, so instead of inventing the wheel, we follow design patterns that are well-proven, tested by others, and safe to follow.

Design Patterns offer a specific implementation for a specific object-oriented programming problem. Each design pattern has a different use case and applies to a different scenario.

Examples of Design Patterns:

  • Active Record Pattern (A database table or view is wrapped into a class)
  • Singleton Pattern (One class can only have one instance at a time)

Design Principles

Design Principles are the best practices and core abstract (high-level) principles to ensure scalable software architecture and mastery. In most cases, you need to follow them to have quality code.

For example, the Single Responsibility Principle (SRP) suggests that a class should have only one reason to change. This is a high-level statement that we should keep in mind while designing or creating classes for our application. SRP does not provide specific implementation steps and it is up to developers how they implement it in their applications.

Some principles imply some design patterns. For example, the Open/Closed principle closely implies the Strategy pattern. Meanwhile, the Dependency Injection principle has strong ties to the MVC pattern.

Examples of Design Principles:

  • Single Responsibility Principle
  • Open/Closed Principle
  • Liskov Substitution Principle
  • Interface Segregation Principle
  • Dependency Inversion Principle

TL;DR

  • Design Patterns are applied to specific common problems. You should have a very good reason every time you decide to implement a pattern.
  • Design Principles are applied to all programming. You should have a very good reason every time you decide not to follow principles.

Source

  1. ruby on rails - What's the difference between design patterns and design principles? - Stack Overflow

The end. I hope you found this article helpful. Stay tuned for more content!

If you want to support me, you can buy me a coffee :)


Original Link: https://dev.to/andrewsavetchuk/the-difference-between-design-patterns-and-design-principles-104n

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To