All the basic design principles converge on the use of abstraction for incorporating flexibility using loose coupling behaviour. Interface Segregation Principle (ISP) is a guideline for designing different interfaces.
Interfaces are useful in designing real world systems, where every object can have multiple aspects. This aspect can be a facet, a behaviour, a role - any entity that qualifies the object with that aspect. Lets take a real world example - a modern cell phone (mobile) acts more than just a phone, it is a phone, a MP3 player and a video player. When I am using it as a MP3 player, I will like to specify the song I want to play and listen to it, nothing more nothing else. When I am using it as a mobile phone, I will like to provide the number and speak, nothing more nothing else. I will get extremely irritated if I am asked for a phone number when I want to listen to a song. It is better if only the relevant questions are asked.
This is the essence of Interface Segregation Principle.
Clients should not be forced to depend upon interfaces that they do not use.
The cell phone had interfaces of a phone and a MP3 player. ISP advises to keep these two interfaces completely independent of each other. This way the phone can be treated purely as a phone or as a MP3 player. Programmatically, I can use only the interface of a MP3 player in my method called playSong. In future even if the interface for the phone is modified, playSong would remain the same.
Logically, all ISP says is that if there are two non-cohesive functionalities, keep them separate. So that they can be used independent of other. This avoids design of fat interfaces, and provides a clear design to the user (client). Break the functionalities into atomic interfaces that can be then individually accessed by the user. A good usage of Law Of Demeter can help in designing these atomic interfaces.
Related Links:
- ISP by Robert Martin (pdf)
Back to Design Principles.
Technorati tags: interface segregation principle, interface, isp, design principles


March 23rd, 2007 at 7:00 pm
This is the best explanation of the ISP that i have ever gon through
March 24th, 2007 at 8:12 am
Thanks Apurva!
April 18th, 2007 at 3:21 pm
U have explained with best example! pl can u give me other example?
November 29th, 2007 at 11:04 am
The example is quite explainatory
March 13th, 2008 at 12:03 am
[...] a guideline, I first scan the interfaces thoroughly, maybe using Interface Segregation Principle, and look at composition if I am looking mainly for code reuse. Alarms also start ringing if I get [...]