I was reading about SOLID and other design principles. I thought ISP was the same as "Program to an interface, not an implementation". But it looks like these are different principles?

Is there a difference?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

ISP is focused on the idea of each interface representing one discrete and cohesive behavior.

That is, each logical group of things an object should do would map to a single specific interface. A class might want to do several things, but each thing would map to a specific interface representing that behavior. The idea is each interface is very focused.

link|improve this answer
1  
short and to the point – Gordon Feb 12 at 15:15
1  
wow .. thanks! cant accept for another 5 minutes :) – hangar18 Feb 12 at 15:19
1  
+1. The classic "smell" that tells you you're not following this principle is a client consuming (depending on) an interface where the client only calls a subset of the interface's methods. – TrueWill Feb 12 at 18:36
feedback

Robert Martin has a very good explanation of Interface segregation principle (ISP), in his book "UML for Java Programmer". Based on that, I don't think ISP is about an interface being "focused" on one logical, coherent group of things. Because, that goes without saying; or, at least it should go without saying. Each class, interface or abstract class should be designed that way.

So, what is ISP? Let me explain it with an example. Say, you have a class A and a class B, which is the client of class A. Suppose, class A has ten methods, of which only two is used by B. Now, does B need to know about all ten methods of A? Probably not - the principle of Information hiding. The more you expose, the more you create the chance for coupling. For that reason, you may insert an interface, call it C, between the two classes(segregation). That interface will only declare the two methods that are used by B, and B will depend on that Interface, instead of directly on A.

So now,

class A {
   method1()
   method2()
   // more methods
   method10()
}
class B {
    A a = new A()

}

will become

interface C {
      method1()
       method2()
}



class A implements C{
      method1()
      method2()
      // more methods
      method10()
  }
  class B {
       C c = new A()

 }   

This, prevents B from knowing more than it should.

link|improve this answer
+1 for the taking the time out for a detailed explanation! – hangar18 Feb 13 at 14:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.