Skip to content

phongnguyend/Practical.SOLID

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

What is Single Responsibility Principle?

A class should have only one reason to change.

What is Open/Closed Principle?

Software entities (classes, modules, functions, etc.) should be open for extension but closed for modification.

Changing by adding new code rather than by changing existing code.

Keep the things that change frequently away from things that don't change.

What is Liskov Substitution Principle?

Subtypes must be substitutable for their base types.

What is Interface Segregation Principle?

Clients (callers/implementers) should not be forced to depend on methods they do not use.

What is Dependency Inversion Principle?

High-level modules should not depend on low-level modules. Both should depend on abstractions. Abstractions should not depend upon details. Details should depend upon abstractions.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages