Introduction

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

The SOLID principles of object-oriented programming consist of five principles. The individual principles came from different people, but Robert C. Martin put them together in a 2000 publication titled “Design Principles and Design Patterns.” These principles have stood the test of time and proven invaluable in building clean, robust, flexible, scalable, and maintainable software.

In the previous lesson, you learned about the Single Responsibility and Open-Closed principles. In this lesson, you’ll learn about:

  • The Liskov Substitution Principle.
  • The Interface Segregation Principle.
  • The Dependency Inversion Principle.

You’ll start with the Liskov substitution principle in the next segment.

See forum comments
Download course materials from Github
Previous: Quiz: Single Responsibility & Open-Closed Principles Next: Learning Liskov Substitution Principle