Interface vs Base class - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T23:25:55Z http://stackoverflow.com/feeds/question/56867 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/56867/interface-vs-base-class 120 Interface vs Base class Howler 2008-09-11T15:20:30Z 2009-08-25T03:24:21Z <p>When should I use an interface and when should I use a base class? </p> <p>Should it always be an interface if I don't want to actually define a base implementation of the methods?</p> <p>If I have a Dog and Cat class. Why would I want to implement IPet instead of PetBase? I can understand having interfaces for ISheds or IBarks (IMakesNoise?), because those can be placed on a pet by pet basis, but I don't understand which to use for a generic Pet.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56871#56871 56 Answer by Jason Cohen for Interface vs Base class Jason Cohen 2008-09-11T15:22:03Z 2008-09-11T15:34:45Z <p>Modern style is to define IPet <em>and</em> PetBase.</p> <p>The advantage of the interface is that other code can use it without any ties whatsoever to other executable code. Completely "clean." Also interfaces can be mixed.</p> <p>But base classes are useful for simple implementations and common utilities. So provide an abstract base class as well to save time and code.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56873#56873 28 Answer by Kilhoffer for Interface vs Base class Kilhoffer 2008-09-11T15:22:47Z 2008-09-11T17:53:39Z <p>In general, you should favor interfaces over abstract classes. One reason to use an abstract class is if you have common implementation among concrete classes. Of course, you should still declare an interface (IPet) and have an abstract class (PetBase) implement that interface.Using small, distinct interfaces, you can use multiples to further improve flexibility. Interfaces allow the maximum amount of flexibility and portability of types across boundaries. When passing references across boundaries, always pass the interface and not the concrete type. This allows the receiving end to determine concrete implementation and provides maximum flexibility. This is absolutely true when programming in a TDD/BDD fashion.</p> <p>The Gang of Four stated in their book "Because inheritance exposes a subclass to details of its parent's implementation, it's often said that 'inheritance breaks encapsulation". I believe this to be true.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56877#56877 0 Answer by jjnguy for Interface vs Base class jjnguy 2008-09-11T15:23:50Z 2008-09-15T16:53:49Z <p>I usually write both the Interface and the base Abstract Class. That leads to a much more robustly defined class hierarchy.</p> <p>It also gives the code more flexibility.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56878#56878 1 Answer by Joel Coehoorn for Interface vs Base class Joel Coehoorn 2008-09-11T15:24:14Z 2008-11-04T21:23:35Z <p>One important difference is that you can only inherit <strong>one</strong> base class, but you can implement <strong>many</strong> interfaces. So you only want to use a base class if you are <em>absolutely certain</em> that you won't need to also inherit a different base class. Additionally, if you find your interface is getting large then you should start looking to break it up into a few logical pieces that define independent functionality, since there's no rule that your class can't implement them all (or that you can define a different interface that just inherits them all to group them).</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56887#56887 1 Answer by spoulson for Interface vs Base class spoulson 2008-09-11T15:29:09Z 2008-09-11T15:29:09Z <p>It depends on your requirements. If IPet is simple enough, I would prefer to implement that. Otherwise, if PetBase implements a ton of functionality you don't want to duplicate, then have at it.</p> <p>The downside to implementing a base class is the requirement to <code>override</code> (or <code>new</code>) existing methods. This makes them virtual methods which means you have to be careful about how you use the object instance.</p> <p>Lastly, the single inheritance of .NET kills me. A naive example: Say you're making a user control, so you inherit <code>UserControl</code>. But, now you're locked out of also inheriting <code>PetBase</code>. This forces you to reorganize, such as to make a <code>PetBase</code> class member, instead.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56891#56891 2 Answer by Einar for Interface vs Base class Einar 2008-09-11T15:30:55Z 2008-09-11T15:30:55Z <p>@<a href="#56878" rel="nofollow">Joel</a>: Some languages (e.g., C++) allow multiple-inheritance.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56893#56893 1 Answer by Bill the Lizard for Interface vs Base class Bill the Lizard 2008-09-11T15:31:47Z 2008-09-11T15:31:47Z <p>I usually don't implement either until I need one. I favor interfaces over abstract classes because that gives a little more flexibility. If there's common behavior in some of the inheriting classes I move that up and make an abstract base class. I don't see the need for both, since they essentially server the same purpose, and having both is a bad code smell (imho) that the solution has been over-engineered.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56894#56894 31 Answer by Marcio Aguiar for Interface vs Base class Marcio Aguiar 2008-09-11T15:32:11Z 2009-08-25T03:24:21Z <p>Well, Josh Bloch said himself in <a href="http://rads.stackoverflow.com/amzn/click/0321356683" rel="nofollow">Effective Java 2d</a>:</p> <h2>Prefer interfaces over abstract classes</h2> <p>Some main points:</p> <blockquote> <ul> <li><p><strong>Existing classes can be easily retrofitted to implement a new interface</strong>. All you have to do is add the required methods if they don’t yet exist and add an implements clause to the class declaration. </p></li> <li><p><strong>Interfaces are ideal for defining mixins</strong>. Loosely speaking, a mixin is a type that a class can implement in addition to its “primary type” to declare that it pro- vides some optional behavior. For example, Comparable is a mixin interface that allows a class to declare that its instances are ordered with respect to other mutu- ally comparable objects.</p></li> <li><p><strong>Interfaces allow the construction of nonhierarchical type frameworks</strong>. Type hierarchies are great for organizing some things, but other things don’t fall neatly into a rigid hierarchy. </p></li> <li><p><strong>Interfaces enable safe, powerful functionality enhancements</strong> via the wrap- per class idiom. If you use abstract classes to define types, you leave the programmer who wants to add functionality with no alternative but to use inheritance. </p></li> </ul> <p>Moreover, you can combine the virtues of interfaces and abstract classes by providing an abstract skeletal implementation class to go with each nontrivial interface that you export.</p> </blockquote> <p>On the other hand, interfaces are very hard to evolve. If you add a method to an interface it'll break all of it's implementations.</p> <p>PS.: Buy the book. It's a lot more detailed.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56901#56901 0 Answer by Torlack for Interface vs Base class Torlack 2008-09-11T15:33:52Z 2008-09-11T15:33:52Z <p>In addition to those comments that mention the IPet/PetBase implementation, there are also cases where providing an accessor helper class can be very valuable.</p> <p>The IPet/PetBase style assumes that you have multiple implementations thus increasing the value of PetBase since it simplifies implementation. However, if you have the reverse or a blend of the two where you have multiple clients, providing a class help assist in the usage of the interface can reduce cost by making it easier to use an interface.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56902#56902 2 Answer by Jarrett Meyer for Interface vs Base class Jarrett Meyer 2008-09-11T15:34:03Z 2008-09-11T15:34:03Z <p>Interfaces should be small. Really small. If you're really breaking down your objects, then your interfaces will probably only contain a few very specific methods and properties.</p> <p>Abstract classes are shortcuts. Are there things that all derivatives of PetBase share that you can code once and be done with? If yes, then it's time for an abstract class.</p> <p>Abstract classes are also limiting. While they give you a great shortcut to producing child objects, any given object can only implement one abstract class. Many times, I find this a limitation of Abstract classes, and this is why I use lots of interfaces.</p> <p>Abstract classes may contain several interfaces. Your PetBase abstract class may implement IPet (pets have owners) and IDigestion (pets eat, or at least they should). However, PetBase will probably not implement IMammal, since not all pets are mammals and not all mammals are pets. You may add a MammalPetBase that extends PetBase and add IMammal. FishBase could have PetBase and add IFish. IFish would have ISwim and IUnderwaterBreather as interfaces.</p> <p>Yes, my example is extensively over-complicated for the simple example, but that's part of the great thing about how interfaces and abstract classes work together.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56912#56912 87 Answer by Jon Limjap for Interface vs Base class Jon Limjap 2008-09-11T15:36:14Z 2008-09-11T15:57:43Z <p>Let's take your example of a Dog and a Cat class, and let's illustrate using C#:</p> <p>Both a dog and a cat are animals, specifically, quadruped mammals (animals are waaay too general). Let us assume that you have an abstract class Mammal, for both of them:</p> <pre><code>public abstract class Mammal </code></pre> <p>This base class will probably have default methods such as:</p> <ul> <li>Hunt</li> <li>Feed</li> <li>Mate</li> </ul> <p>All of which are behavior that have more or less the same implementation between either species. To define this you will have:</p> <pre><code>public class Dog : Mammal public class Cat : Mammal </code></pre> <p>Now let's suppose there are other mammals, which we will usually see in a zoo:</p> <pre><code>public class Giraffe : Mammal public class Rhinoceros : Mammal public class Hippopotamus : Mammal </code></pre> <p>This will still be valid because at the core of the functionality, Hunt(), Feed() and Mate() will still be the same.</p> <p>However, giraffes, rhinoceros, and hippos are not exactly animals that you can make pets out of. That's where an interface will be useful:</p> <pre><code>public interface IPettable { IList&lt;Trick&gt; Tricks{get; set;} void Bathe(); void Train(Trick t); } </code></pre> <p>The implementation for the above contract will not be the same between a cat and dog; putting their implementations in an abstract class to inherit will be a bad idea. </p> <p>Your Dog and Cat definitions should now look like:</p> <pre><code>public class Dog : Mammal, IPettable public class Cat : Mammal, IPettable </code></pre> <p>Theoretically you can override them from a higher base class, but essentially an interface allows you to add on only the things you need unto a class without the need for inheritance.</p> <p>Consequently, because you can usually only inherit from one abstract class (in most statically typed OO languages that is... exceptions include C++) but be able to implement multiple interfaces, it allows you to construct objects in a strictly <em>as required</em> basis.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/56961#56961 7 Answer by Gishu for Interface vs Base class Gishu 2008-09-11T15:52:34Z 2008-09-11T15:52:34Z <h2>Interfaces </h2> <ul> <li>Defines the contract between 2 modules. Cannot have any implementation. </li> <li>Most languages allow you to implement multiple interfaces </li> <li>Modifying an interface is a breaking change. All implementations need to be recompiled/modified.</li> <li>All members are public. Implementations have to implement all members.</li> <li>Interfaces help in Decoupling. You can use mock frameworks to mock out anything behind an interface</li> <li>Interfaces normally indicate a kind of behavior</li> <li><p>Interface implementations are decoupled / isolated from each other</p> <h2>Base classes </h2></li> <li><p>Allows you to add some <strong>default</strong> implementation that you get for free by derivation </p></li> <li>Except C++, you can only derive from one class. Even if could from multiple classes, it is usually a bad idea.</li> <li>Changing the base class is relatively easy. Derivations do not need to do anything special</li> <li>Base classes can declare protected and public functions that can be accessed by derivations</li> <li>Abstract Base classes can't be mocked easily like interfaces</li> <li>Base classes normally indicate type hierarchy (IS A)</li> <li>Class derivations may come to depend on some base behavior (have intricate knowledge of parent implementation). Things can be messy if you make a change to the base implementation for one guy and break the others.</li> </ul> http://stackoverflow.com/questions/56867/interface-vs-base-class/57027#57027 16 Answer by fryguybob for Interface vs Base class fryguybob 2008-09-11T16:18:49Z 2008-09-11T16:18:49Z <p>This is pretty .NET specific, but the Framework Design Guidelines book argues that in general classes give more flexibility in an evolving framework. Once an interface is shipped, you don't get the chance to change it without breaking code that used that interface. With a class however, you can modify it and not break code that links to it. As long you make the right modifications, which includes adding new functionality, you will be able to extend and evolve your code.</p> <p>Krzysztof Cwalina says on page 81:</p> <blockquote> <p>Over the course of the three versions of the .NET Framework, I have talked about this guideline with quite a few developers on our team. Many of them, including those who initially disagreed with the guidelines, have said that they regret having shipped some API as an interface. I have not heard of even one case in which somebody regretted that they shipped a class.</p> </blockquote> <p>That being said there certainly is a place for interfaces. As a general guideline always provide an abstract base class implementation of an interface if for nothing else as an example of a way to implement the interface. In the best case that base class will save a lot of work.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/57271#57271 0 Answer by Aaron Fischer for Interface vs Base class Aaron Fischer 2008-09-11T18:23:33Z 2008-09-11T18:23:33Z <p>An inheritor of a base class should have an "is a" relationship. Interface represents An "implements a" relationship. So only use a base class when your inheritors will maintain the is a relationship.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/57316#57316 0 Answer by David Pokluda for Interface vs Base class David Pokluda 2008-09-11T18:43:58Z 2008-09-11T18:43:58Z <p>Use your own judgement and be smart. Don't always do what others (like me) are saying. You will hear "prefer interfaces to abstract classes" but it really depends. It depends what the class is.</p> <p>In the above mentioned case where we have a hierarchy of objects, interface is a good idea. Interface helps to work with collections of these objects and it also helps when implementing a service working with any object of the hierarchy. You just define a contract for working with objects from the hierarchy.</p> <p>On the other hand when you implement a bunch of services that share a common functionality you can either separate the common functionality into a complete separate class or you can move it up into a common base class and make it abstract so that nobody can instantiate the base class.</p> <p>Also consider this how to support your abstractions over time. Interfaces are fixed: You release an interface as a contract for a set of functionality that any type can implement. Base classes can be extended over time. Those extensions become part of every derived class.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/57349#57349 3 Answer by Joe for Interface vs Base class Joe 2008-09-11T19:03:01Z 2008-09-11T19:03:01Z <p>I recommend using composition instead of inheritence whenever possible. Use interfaces but use member objects for base implementation. That way, you can define a factory that constructs your objects to behave in a certain way. If you want to change the behavior then you make a new factory method (or abstract factory) that creates different types of sub-objects.</p> <p>In some cases, you may find that your primary objects don't need interfaces at all, if all of the mutable behavior is defined in helper objects.</p> <p>So instead of IPet or PetBase, you might end up with a Pet which has an IFurBehavior parameter. The IFurBehavior parameter is set by the CreateDog() method of the PetFactory. It is this parameter which is called for the shed() method.</p> <p>If you do this you'll find your code is much more flexible and most of your simple objects deal with very basic system-wide behaviors.</p> <p>I recommend this pattern even in multiple-inheritence languages.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/57457#57457 0 Answer by Mark for Interface vs Base class Mark 2008-09-11T19:51:44Z 2008-09-11T19:51:44Z <p>Interfaces have the distinct advantage of being somewhat "hot swappable" for classes. Changing a class from one parent to another will often result in a great deal of work, but Interfaces can often be removed and changed without a great deal of effect on the implementation class. This is especially useful in cases where you have several narrow sets of behaviour that you "may" want a class to implement.</p> <p>This works especially well in my field: game programming. Base classes can get bloated with tons of behaviours that "may" be needed by inherited objects. With interfaces different behaviours can be added or removed to objects easily and readily. For example, if I create an interface for "IDamageEffects" for objects that I want to reflect damage, then I can easily apply that to various game objects, and easily change my mind later. Say I design an initial class that I want to use for "static" decorative objects and I initially decide they are non-destructible. Later on, I may decide it would be more fun if they could blow up so I alter the class to implement the "IDamageEffects" interface. This is much easier to do than switching base classes or creating a new object hierarchy.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/57464#57464 0 Answer by Keithius for Interface vs Base class Keithius 2008-09-11T19:53:42Z 2008-09-11T19:53:42Z <p>There are other advantages to inheritance as well - such as the ability for a variable to be able to hold an object of either the parent class or the inherited class (without having to declare it as something generic, like "Object"). </p> <p>For example, in .NET WinForms, most UI components derive from System.Windows.Forms.Control, so a variable declared as that could "hold" just about any UI element - be it a button, a ListView, or what have you. Now, granted, you won't have access to all the properties or methods of the item, but you'll have all the basic stuff - and that can be useful.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/57714#57714 2 Answer by Flory for Interface vs Base class Flory 2008-09-11T21:32:07Z 2008-09-11T21:32:07Z <p>Juan,</p> <p>I like to think of interfaces as a way to characterize a class. A particular dog breed class, say a YorkshireTerrier, may be a descended of the parent dog class, but it is also implements IFurry, IStubby, and IYippieDog. So the class defines what the class is but the interface tells us things about it.</p> <p>The advantage of this is it allows me to, for example, gather all the IYippieDog's and throw them into my Ocean collection. So now I can reach across a particular set of objects and find ones that meet the criteria I am looking at without inspecting the class too closely.</p> <p>I find that interfaces really should define a sub-set of the public behavior of a class. If it defines all the public behavior for all the classes that implement then it usually does not need to exist. They do not tell me anything useful.</p> <p>This thought though goes counter to the idea that every class should have an interface and you should code to the interface. That's fine, but you end up with a lot of one to one interfaces to classes and it makes things confusing. I understand that the idea is it does not really cost anything to do and now you can swap things in and out with ease. However, I find that I rarely do that. Most of the time I am just modifying the existing class in place and have the exact same issues I always did if the public interface of that class needs changing, except I now have to change it in two places.</p> <p>So if you think like me you would definitely say that Cat and Dog are IPettable. It is a characterization that matches them both.</p> <p>The other piece of this though is should they have the same base class? The question is do they need to be broadly treated as the same thing. Certainly they are both Animals, but does that fit how we are going to use them together. </p> <p>Say I want to gather all Animal classes and put them in my Ark container.</p> <p>Or do they need to be Mammals? Perhaps we need some kind of cross animal milking factory?</p> <p>Do they even need to be linked together at all? Is it enough to just know they are both IPettable?</p> <p>I often feel the desire to derive a whole class hierarchy when I really just need one class. I do it in anticipation someday I might need it and usually I never do. Even when I do, I usually find I have to do a lot to fix it. That’s because the first class I am creating is not the Dog, I am not that lucky, it is instead the Platypus. Now my entire class hierarchy is based on the bizarre case and I have a lot of wasted code. </p> <p>You might also find at some point that not all Cats are IPettable (like that hairless one). Now you can move that Interface to all the derivative classes that fit. You will find that a much less breaking change that all of a sudden Cats are no longer derived from PettableBase.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/57763#57763 1 Answer by Scott A. Lawrence for Interface vs Base class Scott A. Lawrence 2008-09-11T22:01:10Z 2008-09-11T22:01:10Z <p>Previous comments about using abstract classes for common implementation is definitely on the mark. One benefit I haven't seen mentioned yet is that the use of interfaces makes it much easier to implement mock objects for the purpose of unit testing. Defining IPet and PetBase as Jason Cohen described enables you to mock different data conditions easily, without the overhead of a physical database (until you decide it's time to test the real thing).</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/59999#59999 2 Answer by theschmitzer for Interface vs Base class theschmitzer 2008-09-12T21:24:45Z 2008-09-12T21:24:45Z <p>Don't use a base class unless you know what it means, and that it applies in this case. If it applies, use it, otherwise, use interfaces. But note the answer about small interfaces.</p> <p>Public Inheritance is overused in OOD and expresses a lot more than most developers realize or are willing to live up to. See the <a href="http://en.wikipedia.org/wiki/Liskov_substitution_principle" rel="nofollow">Liskov Substitutablity Principle</a></p> <p>In short, if A "is a" B then A requires no more than B and delivers no less than B, for every method it exposes.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/60013#60013 0 Answer by Mark Cidade for Interface vs Base class Mark Cidade 2008-09-12T21:32:04Z 2008-09-12T21:32:04Z <p>You should use a base class if there really isn't any reason for other developers to desire using their own base class in addition to your type's members <strong>and</strong> you foresee versioning issues (see <a href="http://haacked.com/archive/2008/02/21/versioning-issues-with-abstract-base-classes-and-interfaces.aspx" rel="nofollow">http://haacked.com/archive/2008/02/21/versioning-issues-with-abstract-base-classes-and-interfaces.aspx</a>).</p> <p>If inheriting developers have any reason to use their own base class to implement your type's interface and you don't see the interface changing, then go with an interface. In this case, you can still throw in a default base class that implements the interface for sake of convenience.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/60341#60341 0 Answer by Dmitry Shechtman for Interface vs Base class Dmitry Shechtman 2008-09-13T05:11:58Z 2008-09-13T05:11:58Z <p>That's an easy one. If you're programming in C++ always use base classes ;)</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/65660#65660 3 Answer by Sijin for Interface vs Base class Sijin 2008-09-15T18:54:51Z 2009-07-22T14:18:10Z <p>Also keep in mind not to get swept away in OO (<a href="http://www.indiangeek.net/2006/10/25/do-not-start-with-an-interface" rel="nofollow">see blog</a>) and always model objects based on behavior required, if you were designing an app where the only behavior you required was a generic name and species for an animal then you would only need one class Animal with a property for the name, instead of millions of classes for every possible animal in the world.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/65939#65939 4 Answer by Thomas Danecker for Interface vs Base class Thomas Danecker 2008-09-15T19:25:29Z 2008-09-15T19:31:45Z <p>Interfaces and base classes represent two different forms of relationships.</p> <p><b>Inheritance</b> (base classes) represent an "is-a" relationship. E.g. a dog or a cat "is-a" pet. This relationship always represents the (single) <b>purpose</b> of the class (in conjunction with the "single responsibility principle"[1]).</p> <p><b>Interfaces</b>, on the other hand, represent <b>additional features</b> of a class. I'd call it an "is" relationship, like in "Foo is disposable", hence the IDisposable interface in C#.</p> <p>[1]: <a href="http://codebetter.com/blogs/glenn.block/archive/2008/09/11/the-alt-net-criterion.aspx" rel="nofollow">References of the most important principles of software engineering</a></p> http://stackoverflow.com/questions/56867/interface-vs-base-class/67653#67653 2 Answer by Wheat for Interface vs Base class Wheat 2008-09-15T22:34:03Z 2008-09-15T22:34:03Z <p>Conceptually, an Interface is used to formally and semi-formally define a set of methods that an object will provide. Formally means a set of method names and signatures, semi-formally means human readable documentation associated with those methods. Interfaces are only descriptions of an API (after all, API stands for Application Programmer <strong>Interface</strong>), they can't contain any implementation, and it's not possible to use or run an Interface. They only make explicit the contract of how you should interact with an object. </p> <p>Classes provide an implementation, they can declare that they implement zero, one or more Interfaces. If a Class is intended to be inherited, the convention is to prefix the Class name with "Base".</p> <p>There is a distinction between a Base Class and an Abstract Base Classes (ABC). ABCs mix interface and implementation together. Abstract outside of computer programming means "summary", that is "Abstract == Interface". An Abstract Base Class can then describe both an interface, as well as an empty, partial or complete implementation that is intended to be inherited.</p> <p>Opinions on when to use Interfaces versus Abstract Base Classes versus just Classes is going to vary wildly based on both what you are developing, and which language you are developing in. Interfaces are often associated only with statically typed languages such as Java or C#, but dynamically typed languages can also have Interfaces and Abstract Base Classes. In Python for example, the distinction is made clear between a Class, which declares that it <strong>implements</strong> an Interface, and an object, which is an instance of a Class, and is said to <strong>provide</strong> that Interface. It's possible in a dynamic language that two objects that are both instances of the same Class, can declare that they provide completely <strong>different</strong> interfaces. In Python this is only possible for object attributes, while methods are shared state between all objects of a Class. However in Ruby, objects can have per-instance methods, so it's possible that the Interface between two objects of the same Class can vary as much as the programmer desires (however, Ruby doesn't have any explicit way of declaring Interfaces).</p> <p>In dynamic languages the Interface to an object is often implicitly assumed, either by introspecting an object and asking it what methods it provides (Look Before You Leap) or preferably by simply attempting to use the desired Interface on an object and catching exceptions if the object doesn't provide that Interface (Easier to Ask Forgiveness than Permission). This can lead to "false positives" where two Interfaces have the same method name but are semantically different, however the trade-off is that your code is more flexible since you don't need to over specify up-front to anticipate all possible uses of your code.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/203853#203853 1 Answer by RWendi for Interface vs Base class RWendi 2008-10-15T06:19:23Z 2008-10-15T06:19:23Z <p>Here is the basic and simple definiton of interface and base class:</p> <ul> <li>Base class = object inheritance.</li> <li>Interface = functional inheritance.</li> </ul> <p>cheers,</p> <p><a href="http://www.RWendi.com/" rel="nofollow" title="RWendi">RWendi</a></p> http://stackoverflow.com/questions/56867/interface-vs-base-class/210208#210208 4 Answer by Richard Harrison for Interface vs Base class Richard Harrison 2008-10-16T20:39:24Z 2008-10-16T20:39:24Z <p>Explained well in this <a href="http://www.javaworld.com/javaworld/javaqa/2001-04/03-qa-0420-abstract.html" rel="nofollow">Java World article</a></p> <p>Personally I tend to use interfaces to define interfaces - i.e. parts of the system design that specify how something should be accessed. </p> <p>It's not uncommon that I will have a class implementing 1 or more interfaces.</p> <p>Abstract classes I use as a basis for something else.</p> <p>The following is an extract from the above mentioned article <a href="http://www.javaworld.com/javaworld/javaqa/2001-04/03-qa-0420-abstract.html" rel="nofollow">JavaWorld.com article, author Tony Sintes, 04/20/01</a> <hr></p> <blockquote> <h2>Interface vs. abstract class</h2> <p>Choosing interfaces and abstract classes is not an either/or proposition. If you need to change your design, make it an interface. However, you may have abstract classes that provide some default behavior. Abstract classes are excellent candidates inside of application frameworks.</p> <p>Abstract classes let you define some behaviors; they force your subclasses to provide others. For example, if you have an application framework, an abstract class may provide default services such as event and message handling. Those services allow your application to plug in to your application framework. However, there is some application-specific functionality that only your application can perform. Such functionality might include startup and shutdown tasks, which are often application-dependent. So instead of trying to define that behavior itself, the abstract base class can declare abstract shutdown and startup methods. The base class knows that it needs those methods, but an abstract class lets your class admit that it doesn't know how to perform those actions; it only knows that it must initiate the actions. When it is time to start up, the abstract class can call the startup method. When the base class calls this method, Java calls the method defined by the child class.</p> <p>Many developers forget that a class that defines an abstract method can call that method as well. Abstract classes are an excellent way to create planned inheritance hierarchies. They're also a good choice for nonleaf classes in class hierarchies.</p> <h2>Class vs. interface</h2> <p>Some say you should define all classes in terms of interfaces, but I think recommendation seems a bit extreme. I use interfaces when I see that something in my design will change frequently.</p> <p>For example, the Strategy pattern lets you swap new algorithms and processes into your program without altering the objects that use them. A media player might know how to play CDs, MP3s, and wav files. Of course, you don't want to hardcode those playback algorithms into the player; that will make it difficult to add a new format like AVI. Furthermore, your code will be littered with useless case statements. And to add insult to injury, you will need to update those case statements each time you add a new algorithm. All in all, this is not a very object-oriented way to program.</p> <p>With the Strategy pattern, you can simply encapsulate the algorithm behind an object. If you do that, you can provide new media plug-ins at any time. Let's call the plug-in class MediaStrategy. That object would have one method: playStream(Stream s). So to add a new algorithm, we simply extend our algorithm class. Now, when the program encounters the new media type, it simply delegates the playing of the stream to our media strategy. Of course, you'll need some plumbing to properly instantiate the algorithm strategies you will need.</p> <p>This is an excellent place to use an interface. We've used the Strategy pattern, which clearly indicates a place in the design that will change. Thus, you should define the strategy as an interface. You should generally favor interfaces over inheritance when you want an object to have a certain type; in this case, MediaStrategy. Relying on inheritance for type identity is dangerous; it locks you into a particular inheritance hierarchy. Java doesn't allow multiple inheritance, so you can't extend something that gives you a useful implementation or more type identity.</p> </blockquote> http://stackoverflow.com/questions/56867/interface-vs-base-class/260213#260213 1 Answer by Parappa for Interface vs Base class Parappa 2008-11-03T22:30:11Z 2008-11-03T22:37:18Z <p>Another option to keep in mind is using the "has-a" relationship, aka "is implemented in terms of" or "composition." Sometimes this is a cleaner, more flexible way to structure things than using "is-a" inheritance.</p> <p>It may not make as much sense logically to say that Dog and Cat both "have" a Pet, but it avoids common multiple inheritance pitfalls:</p> <pre><code>public class Pet { void Bathe(); void Train(Trick t); } public class Dog { private Pet pet; public void Bathe() { pet.Bathe(); } public void Train(Trick t) { pet.Train(t); } } public class Cat { private Pet pet; public void Bathe() { pet.Bathe(); } public void Train(Trick t) { pet.Train(t); } } </code></pre> <p>Yes, this example shows that there is a lot of code duplication and lack of elegance involved in doing things this way. But one should also appreciate that this helps to keep Dog and Cat decoupled from the Pet class (in that Dog and Cat do not have access to the private members of Pet), and it leaves room for Dog and Cat to inherit from something else--possibly the Mammal class.</p> <p>Composition is preferable when no private access is required and you don't need to refer to Dog and Cat using generic Pet references/pointers. Interfaces give you that generic reference capability and can help cut down on the verbosity of your code, but they can also obfuscate things when they are poorly organized. Inheritance is useful when you need private member access, and in using it you are committing yourself to highly coupling your Dog and Cat classes to your Pet class, which is a steep cost to pay.</p> <p>Between inheritance, composition, and interfaces there is no one way that is always right, and it helps to consider how all three options can be used in harmony. Of the three, inheritance is typically the option that should be used the least often.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/300019#300019 1 Answer by YeahStu for Interface vs Base class YeahStu 2008-11-18T20:25:45Z 2008-11-18T20:25:45Z <p>The case for Base Classes over Interfaces was explained well in the Submain .NET Coding Guidelines:</p> <blockquote> <p><strong>Base Classes vs. Interfaces</strong> An interface type is a partial description of a value, potentially supported by many object types. Use base classes instead of interfaces whenever possible. From a versioning perspective, classes are more flexible than interfaces. With a class, you can ship Version 1.0 and then in Version 2.0 add a new method to the class. As long as the method is not abstract, any existing derived classes continue to function unchanged.</p> <p>Because interfaces do not support implementation inheritance, the pattern that applies to classes does not apply to interfaces. Adding a method to an interface is equivalent to adding an abstract method to a base class; any class that implements the interface will break because the class does not implement the new method. Interfaces are appropriate in the following situations:</p> <ol> <li>Several unrelated classes want to support the protocol.</li> <li>These classes already have established base classes (for example, some are user interface (UI) controls, and some are XML Web services).</li> <li>Aggregation is not appropriate or practicable. In all other situations, class inheritance is a better model.</li> </ol> </blockquote> http://stackoverflow.com/questions/56867/interface-vs-base-class/361188#361188 1 Answer by Don Edwards for Interface vs Base class Don Edwards 2008-12-11T22:14:03Z 2008-12-11T22:14:03Z <p>When I first started learning about object-oriented programming, I made the easy and probably common mistake of using inheritance to share common behavior - even where that behavior was not essential to the nature of the object.</p> <p>To further build on an example much used in this particular question, there are <em>lots</em> of things that are petable - girlfriends, cars, fuzzy blankets... - so I might have had a Petable class that provided this common behavior, and various classes inheriting from it.</p> <p>However, being petable is not part of the nature of any of these objects. There are vastly more important concepts that <em>are</em> essential to their nature - the girlfriend is a person, the car is a land vehicle, the cat is a mammal...</p> <p>Behaviors should be assigned first to interfaces (including the default interface of the class), and promoted to a base class only if they are (a) common to a large group of classes that are subsets of a larger class - in the same sense that "cat" and "person" are subsets of "mammal".</p> <p>The catch is, after you understand object-oriented design sufficiently better than I did at first, you'll normally do this automatically without even thinking about it. So the bare truth of the statement "code to an interface, not an abstract class" becomes so obvious you have a hard time believing anyone would bother to say it - and start trying to read other meanings into it.</p> <p>Another thing I'd add is that if a class is <em>purely</em> abstract - with no non-abstract, non-inherited members or methods exposed to child, parent, or client - then why is it a class? It could be replaced, in some cases by an interface and in other cases by Null.</p>