Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
engineering:computer_science:software_development:solid_principles [2024/08/29 22:20] – removed - external edit (Unknown date) 127.0.0.1 | engineering:computer_science:software_development:solid_principles [2024/08/29 22:20] (current) – ↷ Page moved from engineering:computer_science:software:software_development:solid_principles to engineering:computer_science:software_development:solid_principles carlossousa | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== SOLID Principle ====== | ||
+ | |||
+ | **Tags:** # | ||
+ | |||
+ | **Last Reviewed:** 29/08/2024 | ||
+ | ==== 1. Single Responsibility Principle (SRP) ==== | ||
+ | |||
+ | * **Meaning**: | ||
+ | * **Example** | ||
+ | * **Example** | ||
+ | * **How to Recognize Code Smell?** | ||
+ | * Multiple contextually separated pieces of code in a single class. | ||
+ | * Large setup required in tests. | ||
+ | * **Benefits**: | ||
+ | * Reusability of separated classes. | ||
+ | * Easier testing of individual responsibilities. | ||
+ | |||
+ | ==== 2. Open/Closed Principle (OCP) ==== | ||
+ | |||
+ | * **Meaning**: | ||
+ | * **Example** | ||
+ | * **Example** | ||
+ | * **How to Recognize Code Smell?** | ||
+ | * Direct references to other classes within a class. | ||
+ | * Complex if-else or switch statements. | ||
+ | * **Benefits**: | ||
+ | * Easier extension of functionality. | ||
+ | * Loosely coupled code, enhancing testability. | ||
+ | |||
+ | ==== 3. Liskov Substitution Principle (LSP) ==== | ||
+ | |||
+ | * **Meaning**: | ||
+ | * **Example** | ||
+ | * **How to Recognize Code Smell?** | ||
+ | * Modification of inherited behavior in subclasses. | ||
+ | * Unexpected results or exceptions in overridden methods. | ||
+ | * **Benefits**: | ||
+ | * Avoids incorrect or unexpected behavior in code. | ||
+ | * Clear distinction between shared inherited interface and extended functionality. | ||
+ | |||
+ | ==== 4. Interface Segregation Principle (ISP) ==== | ||
+ | |||
+ | * **Meaning**: | ||
+ | * **Example** | ||
+ | * **How to Recognize Code Smell?** | ||
+ | * Large interfaces with methods not used by all implementing classes. | ||
+ | * **Benefits**: | ||
+ | * Highly cohesive code. | ||
+ | * Reduces coupling by splitting fat interfaces into smaller, client-specific interfaces. | ||
+ | |||
+ | ==== 5. Dependency Inversion Principle (DIP) ==== | ||
+ | |||
+ | * **Meaning**: | ||
+ | * **Example** | ||
+ | * **Example** | ||
+ | * **How to Recognize Code Smell?** | ||
+ | * Instantiation of low-level modules within high-level ones. | ||
+ | * Direct method calls to low-level modules/ | ||
+ | * **Benefits**: | ||
+ | * Increased reusability of high-level modules. | ||
+ | * Easier mocking of dependencies in tests. | ||
+ | |||