Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Cover image for What Is Design Pattern? : Just Another Article
Vishal Chovatiya
Vishal Chovatiya

Posted on • Edited on • Originally published atvishalchovatiya.com

     

What Is Design Pattern? : Just Another Article

After hitting a certain level of experience & spending quite enough time in the industry, I have realised the importance of designing/architecting system & software. So I have started looking into system/software design & got to know nothing can better start than a Design Pattern. And the first thing I have done is googling "What is Design Pattern?" Hence got the idea of this article.

/!\: This article has been originally published on myblog. If you are interested in receiving my latest articles,please sign up to my newsletter.

But as someone without a computer science background(I am from electronics background), learning them was a struggle. Every material, article, explanation or book was riddle with jargon to sift through. Some of them I still don't quite understand. I barely know how theFlyweight &Classical Visitor pattern work and anyone who says they do is a liar.

So, after taking the online course, YouTube videos, lots of googling, tons compiling & spaced repetition with learning & unlearning. Here is what I have gained so far.

What Is Design Pattern?

Software Design Architecture Stack

From Wikipedia:

- In software engineering, a software design pattern is a general, reusable solution to a commonly occurring problem within a given context in software design.
- It is not a finished design that can be transformed directly into source or machine code. It is a description or template for how to solve a problem that can be used in many different situations.
- Design patterns are formalized best practices that the programmer can use to solve common problems when designing an application or system.

  • Design Patterns establishes solutions to common problems which helps to keep code maintainable, extensible & loosely coupled.
  • Developers have given a name to solutions which solve a particular type of problem. And this is how it all started.
  • The more one knows them, the easier it gets to solve all the problems we face.
  • It is popularized byGangOfFour(1994) book.

What Is Not Design Pattern?

  • It isn't code reuse, as it usually does not specify code. The actual implementation depends on the programming language and even the person that is doing it.
  • Design Pattern & Principle(SOLID) are two different things.
  • A Design Pattern is neither a static solution nor is it an algorithm, No hard rule of the coding standard.
  • Software Architecture is not a Design Pattern. Software Architecture dictates what's going to implemented & where it will be put. While Design Patterns states how it should be done.
  • Design Patterns are not ready to code solutions they are more like a description of what the solution should look like. What you should retain from Design Patterns is that the problem and the solution to the problem are closely related. They are both equally important to learn.

Why Do We Need Design Patterns?

As Software Developers, we often evaluate our code through some attributes like how clean, expressive, taking less memory footprint & fast our code is. But the most important concern which we often neglect is that you should be able to easily change anything later. What you decide today could be irrelevant tomorrow. And your code should be flexible enough so that it's not too costly to alter. So Design Patterns are best practices to cover such attributes. For me, the core of Design Patterns consists of the following 6 rules:

They Are Proven Solutions

  • Because Design Patterns often uses by many developers, you can be certain that they work. And not only that, you can be certain that they were revised multiple times and optimizations were probably implemented.

They Are Easily Reusable

  • Design Patterns document a reusable solution which can modify to solve multiple particular problems. As they are not tie-up to a specific problem.
  • For example, consider theIterator Design Pattern, it is reusable throughout STL despite container & algorithm variation. Iterators are working like glue between container & algorithm.

They Are Expressive

  • Design Patterns can explain a large solution quite elegantly. For instance, theVisitor pattern uses to perform a new operation on a range/group of classes. And thus, the standard library adopted such pattern with single function i.e.std::visit algorithm. Same goes forboost::flyweight<>.

They Ease Communication

  • When developers are familiar with Design Patterns, they can more easily communicate with one another about potential solutions to a given problem.
  • If you’re working with colleagues in a team of multiple developers, agree with them about the Design Patterns, as they can help you better with a problem. Also with regard to the maintenance of software, you should follow such procedures, as you make maintenance operations faster and more efficient.

They Prevent the Need for Refactoring Code

  • If an application is written with Design Patterns in mind, it is often the case that you won’t need to refactor the code later on because applying the correct Design Pattern to a given problem is already an optimal solution.
  • If such solutions are then updates, they can seamlessly apply by any good software developer and do not cause any problems.

They Lower the Size of the Codebase

  • Because Design Patterns are usually elegant and optimal solutions, they usually require less code than other solutions. This does not always have to be the case as many developers write more code to improve understanding.

Why You Should Learn Design Patterns?

  • If you boil-down the definition of Object-Oriented Design, it combining data & its operation into a context-bound entity(i.e. class/struct). And it stands true while designing an individual object.
  • But when you are designing complete software you need to take into the account that
    • Creational Design Patterns: How do those objects going to be instantiated/created?
    • Structural Design Patterns: How do those objects combine with other object & formalize bigger entity? which should also be scalable in future.
    • Behavioural Design Patterns: You also need to think in terms of communication between those objects which can anticipate future changes easily & with fewer side effects.
  • Do you see where this lead us to? you need tothink in terms of object everywhere considering maintainability, scalability, expressiveness & stability. So in nutshell, this is amindset for good coding. And I am pretty sure if you are coming from C background, you don't have this mindset & thought process.

Before Dive-Into the Design Patterns

But, before dive-into the Design Patterns you should learn some of the basic design principles called SOLID. SOLID is one of the most popular sets of design principles in object-oriented software development introduced by Robert C. Martin, popularly known as Uncle Bob. The SOLID principles comprise of these five principles:

  1. SRP -- Single Responsibility Principle
  2. OCP -- Open/Closed Principle
  3. LSP -- Liskov Substitution Principle
  4. ISP -- Interface Segregation Principle
  5. DIP -- Dependency Inversion Principle
  • Dev also refers to this SOLID design principle as "The First 5 Principles of Object-Oriented Design".
  • These principles also make it easy for developers to avoid code smells, easily refactor code, and are also a part of the agile or adaptive software development.

SOLID are "not principles to adopt" but "frameworks to use"

Types of Design Patterns

Creational Design Patterns

  1. Factory
  2. Builder
  3. Prototype
  4. Singleton

Structural Design Patterns

  1. Adapter
  2. Bridge
  3. Composite
  4. Decorator
  5. Facade
  6. Flyweight
  7. Proxy

Behavioural Design Patterns

  1. Chain of responsibility
  2. Command
  3. Interpreter
  4. Iterator
  5. Mediator
  6. Memento
  7. Observer
  8. State
  9. Strategy
  10. Template Method
  11. Visitor

Benefits of Design Patterns

  1. Foresee & rectify future problems easily.
  2. Helps in maintaining binary compatibility with subsequent releases.
  3. Just by followingSOLID Principles helps greatly in agile or adaptive software development.
  4. The solution facilitates the development of highlycohesive modules with minimal coupling. Thus, increasing extensibility & reusability.
  5. There are some patterns like Facade, Proxy, etc which encapsulates the complexity in itself to provide easy & intuitive interface to the client. Thus, making the overall system easier to understand & reduce learning curve.
  6. Design Patterns make communication between designers & developers more crystal & precise. A developer can immediately picture the high-level design in their heads when they refer to the name of the pattern used to solve a particular issue when discussing software design.

What Next?

I'm not advocating to learn everything by heart, but you should try to understand as much as you can about these concepts as you will encounter them often in your work. By practising to implement them, you will understand better their use cases and the reasons behind them.

I hope to cover most of the classic Gang of Four Design Patterns throughout this series. I struggled to find beginner-friendly material while learning them, and hope these help others avoid the same fate. By the way, I will be usingModern C++ for all of the patterns. So you can also smell C++ from thought process & some of the definitions(this line is hard for me to put it into the words). This is by no means that you can not apply these patterns to other languages.

FAQs

Do you need design pattern all the time?

Initially, you should not think about Design Pattern.An expressive & less code is always the first line of defence. You should not complicate the solution because complication is given by the problem.

Why you should learn the Design Patterns?

If you are a self-taught developer & does not expose to industry projects then you may not have thought process for using Object-Oriented Design. You can not think every aspect of design in terms of objects. In this case, Design Pattern will give you a new thought process of thinking everything in terms of objects. And if you follow it strictly, you will see your classes & software represent the Domain Specific Language.

Have Any Suggestions, Query or Wants to SayHi? Take the Pressure Off, You Are Just a Click Away.🖱️

Top comments(6)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss
CollapseExpand
 
tweettamimi profile image
Tamimi
Just another developer chillin in an event-driven world of applications 🦄
  • Location
    Ottawa, Canada
  • Work
    Developer Advocate
  • Joined

Hey Vishal, thanks for this blog post! Some of the points you covered were spot on, however, i would have to disagree with the fact that they “prevent the need for refactoring code”. Infact, code refactoring is always there (sometimes even advised) even if you choose a particular design pattern, to re-evaluate the problem and potentially getting to a more efficient solution that either performs well or leaves a smaller footprint.

And grey consolidation of the different design patterns at the end! 👏

CollapseExpand
 
visheshpatel profile image
Vishal Chovatiya
Software Developer⌨, Fitness Freak🏋, Hipster🕴, Blogger👨‍💻, Productivity Hacker⌚, Technical Writer✍️, Tech talker👨‍🎤, Leader👨‍🔬, Always a Student👨‍🎓, Incomplete🔍 & Learning Junkie📚.
  • Location
    Bengaluru
  • Education
    B.Tech in Electronics & Telecommunication
  • Work
    Senior Staff @ Infineon Technologies
  • Joined

Agreed 🤝

CollapseExpand
 
artoodeeto profile image
aRtoo
Web Team at Dentca. Currently hands on Ruby on Rails and Angular. :)
  • Email
  • Location
    orange, california
  • Education
    Bachelors of Science in Information Technology
  • Work
    Fullstack Web Developer at Dentca
  • Joined

Someone recommended this book for learningdesign patterns. Reading of GOF will be confusing if you don't have background in CS like me (I was an IT), so HFDP will help you learn the basic, then you can read GOF. Nice article sir. Thanks :)

CollapseExpand
 
moaxcp profile image
John Mercier
A software developer. I'm interested in learning new technologies and core language features. I love to dive into legacy code writing tests and refactoring as I go.
  • Location
    Julian, PA
  • Education
    Computer Science
  • Work
    Software Engineer III at Altamira Corp
  • Joined

And I am pretty sure if you are coming from C background, you don't have this mindset & thought process.

That is harsh! I have seen plenty of java code that fails to use design patterns and SOLID principles but I don't think it is a language problem. Are you sure nobody with a C background has a good process?

CollapseExpand
 
visheshpatel profile image
Vishal Chovatiya
Software Developer⌨, Fitness Freak🏋, Hipster🕴, Blogger👨‍💻, Productivity Hacker⌚, Technical Writer✍️, Tech talker👨‍🎤, Leader👨‍🔬, Always a Student👨‍🎓, Incomplete🔍 & Learning Junkie📚.
  • Location
    Bengaluru
  • Education
    B.Tech in Electronics & Telecommunication
  • Work
    Senior Staff @ Infineon Technologies
  • Joined

I think I should change that sentence to

And I am pretty sure if you have only used C language so far, you don't have this mindset & thought process.

CollapseExpand
 
powerwebdev profile image
powerwebdev
  • Joined

Wonderful article, thank you for sharing your experiences!

I have written about this topic some time ago:dev.to/powerwebdev/an-introduction...
Just in case you are interested :-)

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

Software Developer⌨, Fitness Freak🏋, Hipster🕴, Blogger👨‍💻, Productivity Hacker⌚, Technical Writer✍️, Tech talker👨‍🎤, Leader👨‍🔬, Always a Student👨‍🎓, Incomplete🔍 & Learning Junkie📚.
  • Location
    Bengaluru
  • Education
    B.Tech in Electronics & Telecommunication
  • Work
    Senior Staff @ Infineon Technologies
  • Joined

More fromVishal Chovatiya

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp