Skip to content

Files

Latest commit

 

History

History

4-InterfaceSegregation

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Interface Segregation

Subclasses should not inherit unnecessary capabilities from superclasses. Any concrete class should not receive capabilities from interfaces that are not related to it. It is useful to consider this principle together with SRP and LSP .We define separate methods for our interfaces

image