DEV Community

Eduardo Julião
Eduardo Julião

Posted on

3 1

Introduction

First compiled by Robert C. Martin in 1990s, SOLID is a acronym that stands for:

  • S: Single Responsibility Principle (SRP)
  • O: Open closed Principle (OCP)
  • L: Liskov substitution Principle (LSP)
  • I: Interface Segregation Principle (ISP)
  • D: Dependency Inversion Principle (DIP)

These are a set of golden rules for object-oriented programming, that make it easier for developers to develop applications that are easy to maintain, refactor and expand.

In this series, we'll dive into what each of these principles are and how they are implemented

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay