Skip to content

chokshidharita/SOLID

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

SOLID

SOLID principles examples in Java

  • Single responsibility principle - A class should have only one reason to change.
  • Open/Closed principle - 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

SOLID principles examples in Java

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages