muratkarakas / solid-principles

Sample codes for "Solid Design Principles" in java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

S.O.L.I.D Java Examples

  • Single responsibility principle - A class should have only one reason to change.

  • Open/Closed principle - Software entities should be open for extension, but closed for modification.

  • Liskov Substitution Principle - Child classes should never break the parent class type definitions.

  • Interface Segregation Principle - No client should be forced to depend on methods it does not use.The number of members in the interface that is visible to the dependent class should be minimised.Large classes implement multiple smaller interfaces that group functions according to their usage

  • Dependency inversion principle - High-level modules should not depend on low-level modules. Both should depend on abstractions. Abstractions should not depend upon details.

About

Sample codes for "Solid Design Principles" in java


Languages

Language:Java 100.0%