Related resources for Interface Segregation Principle
  • Interface Segregation Principle7/8/2015 3:30:44 AM. In this article you will learn about the Interface Segregation Principle.
  • SOLID (Object Oriented Design) Principles3/24/2014 12:33:51 PM. This article attempts to describe the best technique for writing code that requires a minimum of changes to add/modify requirements that are easily scale-able and most importantly, reusable. This is where the S.O.L.I.D. principles and Design patterns are useful.
  • S.O.L.I.D Design Principles Explained: Part 48/14/2012 2:00:49 PM. In this article, we discuss about the “I” in the “SOLID” i.e. Interface Segregation Principle.
  • S.O.L.I.D Design Principles Explained: Part 58/14/2012 1:59:21 PM. In this article, we discuss the last acronym “D” in the “SOLID” i.e. the Dependency Inversion Principle.
  • Interface Segregation Principle with Example8/25/2011 7:33:59 AM. It states avoid tying a client class to a big interface if only a subset of this interface is really needed. Many times you see an interface which has lots of methods. This is a bad design choice since probably a class implementing.