Please enable JavaScript.
Coggle requires JavaScript to display documents.
SOLID, OOP - Coggle Diagram
SOLID
-
Liskov Substitution
-
Having an Application A using an object of type T2 which is subtype of T1, it should be possible to replace usage of T2 by T1 w/o altering behaviour of A.
-
-
-
Interface Segregation
A client should never be forced to implement an interface he does not use. Or clients should not be forced to depend on methods they don't use.
-