Last article I introduced S.O.L.I.D in coding. I found that I didn’t really dive deep in each principle as I thought. Programming is not about the chain of theories. We need to…
Category: Design Patterns
SOLID – Fundamental OOP Principles
S – Single Responsibility Whenever we create a class or method or even variable, we create each one with only one responsibility. If we create “sing” method, we can’t implement “dance” behavior…