Posted on

Table of Contents

This article is part of a series about tech interview. Go to Tech interview to read more.

What is SOLID?

SOLID is a acronym for five principles of Object Oriented Design, and stands for:

⚠️ Here you will see only the main phrase about every principle. The best place to get this information is from the article The S.O.L.I.D Principles in Pictures wrote by Ugonna Thelma.

Single-Responsibility Principle (SRP)

A class should have one, and only one, reason to change. (Martin, n.d.)

The idea behind the Single-Responsibility Principle (SRP) is that a class or module has a single responsibility or task to perform (Boris, 2023).

Open-Closed Principle (OCP)

You should be able to extend a classes behavior, without modifying it. (Martin, n.d.)

Liskov Substitution Principle (LSP)

Derived classes must be substitutable for their base classes. (Martin, n.d.)

Interface Segregation Principle (ISP)

Make fine grained interfaces that are client specific. (Martin, n.d.)

Dependency Inversion Principle (DIP)

Depend on abstractions, not on concretions. (Martin, n.d.)

References