Interface Segregation Principle
The Interface Segregation Principle states that interfaces should be small and specific. So that classes do not implement methods that they do not need. This principle has in particular the task of eliminating bulky, unnecessarily complex interfaces. Each interface in accordance with this principle should be divided into smaller groups of methods. The program presented…
Read more