Why would I want to use Interfaces? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T18:09:00Zhttp://stackoverflow.com/feeds/question/240152http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces23Why would I want to use Interfaces?joshman2112008-10-27T14:51:29Z2009-06-26T04:33:16Z
<p>I understand that they force you to implement methods and such but what I cant understand is why you would want to use them. Can anybody give me a good example or explanation on why I would want to implement this.</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240158#2401581Answer by Douglas Mayle for Why would I want to use Interfaces?Douglas Mayle2008-10-27T14:52:04Z2008-10-27T14:57:10Z<p>There are a number of reasons to do so. When you use an interface, you're ready in the future when you need to refactor/rewrite the code. You can also provide an sort of standardized API for simple operations.</p>
<p>For example, if you want to write a sort algorithm like the quicksort, all you need to sort any list of objects is that you can successfuuly compare two of the objects. If you create an interface, say ISortable, than anyone who creates objects can implement the ISortable interface and they can use your sort code.</p>
<p>If you're writing code that uses a database storage, and you write to an storage interface, you can replace that code down the line.</p>
<p>Interfaces encourage looser coupling of your code so that you can have greater flexibility.</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240160#2401603Answer by Eric Z Beard for Why would I want to use Interfaces?Eric Z Beard2008-10-27T14:52:28Z2008-10-27T14:52:28Z<p>Interfaces are absolutely necessary in an object-oriented system that expects to make good use of polymorphism.</p>
<p>A classic example might be IVehicle, which has a Move() method. You could have classes Car, Bike and Tank, which implement IVehicle. They can all Move(), and you could write code that didn't care what kind of vehicle it was dealing with, just so it can Move().</p>
<pre><code>void MoveAVehicle(IVehicle vehicle)
{
vehicle.Move();
}
</code></pre>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240172#24017223Answer by Stewart Johnson for Why would I want to use Interfaces?Stewart Johnson2008-10-27T14:56:05Z2008-10-27T15:08:57Z<p><strong>One specific example:</strong> interfaces are a good way of specifying a contract that other people's code must meet.</p>
<p>If I'm writing a library of code, I may write code that is valid for objects that have a certain set of behaviours. The best solution is to specify those behaviours in an interface (no implementation, just a description) and then use references to objects implementing that interface in my library code.</p>
<p>Then any random person can come along, create a class that implements that interface, instantiate an object of that class and pass it to my library code and expect it to work. <em>Note: it is of course possible to strictly implement an interface while ignoring the intention of the interface, so merely implementing an interface is no guarantee that things will work. Stupid always finds a way! :-)</em></p>
<p><strong>Another specific example:</strong> two teams working on different components that must co-operate. If the two teams sit down on day 1 and agree on a set of interfaces, then they can go their separate ways and implement their components around those interfaces. Team A can build test harnesses that simulate the component from Team B for testing, and vice versa. Parallel development, and fewer bugs.</p>
<p>The key point is that interfaces provide a layer of <strong>abstraction</strong> so that you can write code that is ignorant of unnecessary details. </p>
<p><strong>The canonical example</strong> used in most textbooks is that of sorting routines. You can sort any class of objects so long as you have a way of comparing any two of the objects. You can make any class sortable therefore by implementing the <code>IComparable</code> interface, which forces you to implement a method for comparing two instances. All of the sort routines are written to handle references to IComparable objects, so as soon as you implement IComparable you can use any of those sort routines on collections of objects of your class.</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240173#2401730Answer by Nazadus for Why would I want to use Interfaces?Nazadus2008-10-27T14:56:15Z2008-10-27T14:56:15Z<p>As you noted, interfaces are good for when you want to force someone to make it in a certain format.</p>
<p>Interfaces are good when data not being in a certain format can mean making dangerous assumptions in your code.</p>
<p>For example, at the moment I'm writing an application that will transform data from one format in to another. I want to force them to place those fields in so I <em>know</em> they will exist and will have a greater chance of being properly implemented. I don't care if another version comes out and it doesn't compile for them because it's more likely that data is required anyways.</p>
<p>Interfaces are rarely used because of this, since usually you can make assumptions or don't really <em>require</em> the data to do what you need to do.</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240179#2401790Answer by James Curran for Why would I want to use Interfaces?James Curran2008-10-27T14:57:24Z2008-10-27T14:57:24Z<p>An interface, defines merely the <em>interface</em>. Later, you can define method (on other classes), which accepted interfaces as parameters (or more accurately, object which implement that interface). This way your method can operate on a large variety of objects, whose only commonality is that they implement that interface.</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240180#2401800Answer by phjr for Why would I want to use Interfaces?phjr2008-10-27T14:57:32Z2008-10-27T14:57:32Z<p>First, they give you an <strong>additional layer of abstraction.</strong> You can say "For this function, this parameter must be an object that has these methods with these parameters". And you probably want to also set the meaning of these methods, in somehow abstracted terms, yet allowing you to reason about the code. In <strong>duck-typed</strong> languages you get that for free. No need for explicit, syntax "interfaces". Yet you probably still create a set of <strong>conceptual interfaces,</strong> something like contracts (like in Design by Contract).</p>
<p>Furthermore, interfaces are sometimes used for less "pure" purposes. In Java, they can be used to emulate multiple inheritance. In C++, you can use them to reduce compile times.</p>
<p>In general, they reduce coupling in your code. That's a good thing.</p>
<p>Your code may also be easier to test this way.</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240183#2401834Answer by Jorge Córdoba for Why would I want to use Interfaces?Jorge Córdoba2008-10-27T14:57:48Z2008-10-27T15:04:27Z<p>Interfaces define <strong>contracts</strong>, and that's the key word.</p>
<p>You use an interface when you need to define a contract in your program but you don't really care about the rest of the properties of the class that fulfills that contract as long as it does.</p>
<p>So, let's see an example. Suppose you have a method which provides the functionality to sort a list. First thing .. what's a list? Do you really care what elements does it holds in order to sort the list? Your answer should be no... In .NET (for example) you have an interface called IList which defines the operations that a list MUST support so you don't care the actual details underneath the surface.</p>
<p>Back to the example, you don't really know the class of the objects in the list... neither you care. If you can just compare the object you might as well sort them. So you declare a contract:</p>
<pre><code>interface IComparable
{
// Return -1 if this is less than CompareWith
// Return 0 if object are equal
// Return 1 if CompareWith is less than this
int Compare(object CompareWith);
}
</code></pre>
<p>that contract specify that a method which accepts an object and returns an int must be implemented in order to be comparable. Now you have defined an contract and for now on you don't care about the object itself but about the <strong>contract</strong> so you can just do:</p>
<pre><code>IComparable comp1 = list.GetItem(i) as IComparable;
if (comp1.Compare(list.GetItem(i+1)) < 0)
swapItem(list,i, i+1)
</code></pre>
<p>PS: I know the examples are a bit naive but they are examples ... </p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240186#2401862Answer by Steve Jessop for Why would I want to use Interfaces?Steve Jessop2008-10-27T14:58:07Z2008-10-27T15:25:47Z<p>Interfaces are a form of polymorphism. An example:</p>
<p>Suppose you want to write some logging code. The logging is going to go somewhere (maybe to a file, or a serial port on the device the main code runs on, or to a socket, or thrown away like /dev/null). You don't know where: the user of your logging code needs to be free to determine that. In fact, your logging code doesn't care. It just wants something it can write bytes to.</p>
<p>So, you invent an interface called "something you can write bytes to". The logging code is given an instance of this interface (perhaps at runtime, perhaps it's configured at compile time. It's still polymorphism, just different kinds). You write one or more classes implementing the interface, and you can easily change where logging goes just by changing which one the logging code will use. Someone else can change where logging goes by writing their own implementations of the interface, without changing your code. That's basically what polymorphism amounts to - knowing just enough about an object to use it in a particular way, while allowing it to vary in all the respects you don't need to know about. An interface describes things you need to know.</p>
<p>C's file descriptors are basically an interface "something I can read and/or write bytes from and/or to", and almost every typed language has such interfaces lurking in its standard libraries: streams or whatever. Untyped languages usually have informal types (perhaps called contracts) that represent streams. So in practice you almost never have to actually invent this particular interface yourself: you use what the language gives you.</p>
<p>Logging and streams are just one example - interfaces happen whenever you can describe in abstract terms what an object is supposed to do, but don't want to tie it down to a particular implementation/class/whatever.</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240187#2401874Answer by Treb for Why would I want to use Interfaces?Treb2008-10-27T14:58:11Z2008-10-27T14:58:11Z<p>One typical example is a plugin architecture. Developer A writes the main app, and wants to make certain that all plugins written by developer B, C and D conform to what his app expects of them. </p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240190#2401900Answer by jakber for Why would I want to use Interfaces?jakber2008-10-27T14:58:35Z2008-10-27T14:58:35Z<p>Let's say you want to keep track of a collection of stuff. Said collections must support a bunch of things, like adding and removing items, and checking if an item is in the collection.</p>
<p>You could then specify an interface ICollection with the methods add(), remove() and contains().</p>
<p>Code that doesn't need to know what kind of collection (List, Array, Hash-table, Red-black tree, etc) could accept objects that implemented the interface and work with them without knowing their actual type.</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240200#2402000Answer by DOK for Why would I want to use Interfaces?DOK2008-10-27T15:02:47Z2008-10-27T15:02:47Z<p>In .Net, I create base classes and inherit from them when the classes are somehow related. For example, base class Person could be inherited by Employee and Customer. Person might have common properties like address fields, name, telephone, and so forth. Employee might have its own department property. Customer has other exclusive properties.</p>
<p>Since a class can only inherit from one other class in .Net, I use interfaces for additional shared functionality. Sometimes interfaces are shared by classes that are otherwise unrelated. Using an interface creates a contract that developers will know is shared by all of the other classes implementing it. I also forces those classes to implement all of its members.</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240210#2402102Answer by Mark Brady for Why would I want to use Interfaces?Mark Brady2008-10-27T15:04:05Z2008-10-27T15:04:05Z<p>The pedals on a car implement an interface. I'm from the US where we drive on the right side of the road. Our steering wheels are on the left side of the car. The pedals for a manual transmission from left to right are clutch -> brake -> accelerator. When I went to Ireland, the driving is reversed. Cars' steering wheels are on the right and they drive on the left side of the road... but the pedals, ah the pedals... they implemented the same interface... all three pedals were in the same order... so even if the class was different and the network that class operated on was different, i was still comfortable with the pedal interface. My brain was able to call my muscles on this car just like every other car.</p>
<p>Think of the numerous non-programming interfaces we can't live without. Then answer your own question. </p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240233#2402330Answer by asterite for Why would I want to use Interfaces?asterite2008-10-27T15:10:27Z2008-10-27T15:10:27Z<p>In an article in my blog I briefly describe three purposes interfaces have.</p>
<blockquote>
<p>Interfaces may have different
purposes:</p>
<ul>
<li>Provide different implementations for the same goal. The typical example
is a list, which may have different
implementations for different
performance use cases (LinkedList,
ArrayList, etc.).</li>
<li>Allow criteria modification. For example, a sort function may accept a
Comparable interface in order to
provide any kind of sort criteria,
based on the same algorithm.</li>
<li>Hide implementation details. This also makes it easier for a user to
read the comments, since in the body
of the interface there are only
methods, fields and comments, no long
chunks of code to skip.</li>
</ul>
</blockquote>
<p>Here's the article's full text: <a href="http://weblogs.manas.com.ar/ary/2007/11/" rel="nofollow">http://weblogs.manas.com.ar/ary/2007/11/</a></p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240253#2402530Answer by JamShady for Why would I want to use Interfaces?JamShady2008-10-27T15:15:26Z2008-10-27T15:15:26Z<p>Imagine the following basic interface which defines a basic CRUD mechanism:</p>
<pre><code>interface Storable {
function create($data);
function read($id);
function update($data, $id);
function delete($id);
}
</code></pre>
<p>From this interface, you can tell that any object that implements it, must have functionality to create, read, update and delete data. This could by a database connection, a CSV file reader, and XML file reader, or any other kind of mechanism that might want to use CRUD operations.</p>
<p>Thus, you could now have something like the following:</p>
<pre><code>class Logger {
Storable storage;
function Logger(Storable storage) {
this.storage = storage;
}
function writeLogEntry() {
this.storage.create("I am a log entry");
}
}
</code></pre>
<p>This logger doesn't care if you pass in a database connection, or something that manipulates files on disk. All it needs to know is that it can call create() on it, and it'll work as expected.</p>
<p>The next question to arise from this then is, if databases and CSV files, etc, can all store data, shouldn't they be inherited from a generic Storable object and thus do away with the need for interfaces? The answer to this is no... not every database connection might implement CRUD operations, and the same applies to every file reader.</p>
<p>Interfaces define what the object is capable of doing and how you need to use it... not what it is!</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240367#2403670Answer by just in case for Why would I want to use Interfaces?just in case2008-10-27T15:47:11Z2008-10-27T15:47:11Z<p>In C# interfaces are also extremely useful for allowing polymorphism for classes that do not share the same base classes. Meaning, since we cannot have multiple inheritance you can use interfaces to allow different types to be used. It's also a way to allow you to expose private members for use without reflection (explicit implementation), so it can be a good way to implement functionality while keeping your object model clean.</p>
<p>For example:</p>
<pre><code>public interface IExample
{
void Foo();
}
public class Example : IExample
{
// explicit implementation syntax
void IExample.Foo() { ... }
}
/* Usage */
Example e = new Example();
e.Foo(); // error, Foo does not exist
((IExample)e).Foo(); // success
</code></pre>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240449#2404490Answer by joshman211 for Why would I want to use Interfaces?joshman2112008-10-27T16:11:00Z2008-10-27T16:11:00Z<p>Wow what a great community. Thank you so much for your responses!</p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240549#2405490Answer by Mark Lubin for Why would I want to use Interfaces?Mark Lubin2008-10-27T16:39:56Z2008-10-27T16:39:56Z<p>I think you need to get a good understand of design patterns so see there power. </p>
<p>Check out
<a href="http://rads.stackoverflow.com/amzn/click/0596007124" rel="nofollow">Head First Design Patterns</a></p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/241804#2418040Answer by sgreeve for Why would I want to use Interfaces?sgreeve2008-10-28T00:11:38Z2008-10-28T00:11:38Z<p>There are several more answers to a similar question here: <a href="http://stackoverflow.com/questions/56867/interface-vs-base-class">Interface vs Base Class</a></p>
http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/245656#2456560Answer by dongilmore for Why would I want to use Interfaces?dongilmore2008-10-29T03:03:03Z2008-10-29T03:03:03Z<p>The best Java code I have ever seen defined almost all object references as instances of interfaces instead of instances of classes. It is a strong sign of quality code designed for flexibility and change.</p>