views:

1533

answers:

16

I'm not asking this question out of spite, but I really want to know, because I might be missing something. Almost every Java book I read talks about using the interface as a way to share state and behavior between objects that when first "constructed" did not seem to share a relationship. However, whenever I see architects design an application, the first thing they do is start coding to an interface. How come? How do you know all the relationships between objects that will occur within that interface? If you already know those relationships, then why not just extend an abstract class?

+24  A: 

Programming to an interface means respecting the "contract" created by using that interface. And so if your IPoweredByMotor interface has a start() method, future classes that implement the interface, be they MotorizedWheelChair, Automobile, or SmoothieMaker, in implementing the methods of that interface, add flexibility to your system, because one piece of code can start the motor of many different types of things, because all that one piece of code needs to know is that they respond to start(). It doesn't matter how they start, just that they must start.

Brian Warshaw
It's worth pointing out that an interface IS NOT a contract. Contract's are behavioral specs: component x guarantees that it will do y in scenario z. Interfaces guarantee nothing. To get a description of an interface that is also coupled with validating behavior, it is necessary to use a class.
Scott Wisniewski
It's a virtual contract. Just like most employment contracts (and unfortunately, some others), you can choose to adhere to it or to treat it like a fire starter.
Brian Warshaw
@Scott: I'd say that a interface is a contract. Not in the technical sense (i.e. the compiler won't enforce the contract other than the existance of all methods mentioned in the interface). But a interface needs a description of each method to be complete and this description represents the contract
Joachim Sauer
It might add flexibility in a sense but it also adds rigidity in a different sense: the interface will infiltrate throughout every corner of the project, if you later discover that your abstraction was wrong; you're screwed.
hasen j
+2  A: 

It's one way to promote loose coupling.

With low coupling, a change in one module will not require a change in the implementation of another module.

A good use of this concept is Abstract Factory pattern. In the Wikipedia example, GUIFactory interface produces Button interface. The concrete factory may be WinFactory (producing WinButton), or OSXFactory (producing OSXButton). Imagine if you are writing a GUI application and you have to go look around all instances of OldButton class and changing them to WinButton. Then next year, you need to add OSXButton version.

eed3si9n
+16  A: 

I think one of the reasons abstract classes have largely been abandoned by developers might be a misunderstanding.

When the Gang of Four wrote:

Program to an interface not an implementation.

there was no such thing as a java or C# interface. They were talking about the object-oriented interface concept, that every class has. Erich Gamma mentions it in this interview.

I think following all the rules and principles mechanically without thinking leads to a difficult to read, navigate, understand and maintain code-base. Remember: The simplest thing that could possibly work.

Bjorn Reppen
+2  A: 

I would assume (with @eed3s9n) that it's to promote loose coupling. Also, without interfaces unit testing becomes much more difficult, as you can't mock up your objects.

Danimal
A: 

In one sense, I think your question boils down to simply, "why use interfaces and not abstract classes?" Technically, you can achieve loose coupling with both -- the underlying implementation is still not exposed to the calling code, and you can use Abstract Factory pattern to return an underlying implementation (interface implementation vs. abstract class extension) to increase the flexibility of your design. In fact, you could argue that abstract classes give you slightly more, since they allow you to both require implementations to satisfy your code ("you MUST implement start()") and provide default implementations ("I have a standard paint() you can override if you want to") -- with interfaces, implementations must be provided, which over time can lead to brittle inheritance problems through interface changes.

Fundamentally, though, I use interfaces mainly due to Java's single inheritance restriction. If my implementation MUST inherit from an abstract class to be used by calling code, that means I lose the flexibility to inherit from something else even though that may make more sense (e.g. for code reuse or object hierarchy).

Tom
+19  A: 

Programming to interfaces provides several benefits:

  1. Required for GoF type patterns, such as the visitor pattern

  2. Allows for alternate implementations. For example, multiple data access object implementations may exist for a single interface that abstracts the database engine in use (AccountDaoMySQL and AccountDaoOracle may both implement AccountDao)

  3. A Class may implement multiple interfaces. Java does not allow multiple inheritance of concrete classes.

  4. Abstracts implementation details. Interfaces may include only public API methods, hiding implementation details. Benefits include a cleanly documented public API and well documented contracts.

  5. Used heavily by modern dependency injection frameworks, such as http://www.springframework.org/.

  6. In Java, interfaces can be used to create dynamic proxies - http://java.sun.com/j2se/1.5.0/docs/api/java/lang/reflect/Proxy.html. This can be used very effectively with frameworks such as Spring to perform Aspect Oriented Programming. Aspects can add very useful functionality to Classes without directly adding java code to those classes. Examples of this functionality include logging, auditing, performance monitoring, transaction demarcation, etc. http://static.springframework.org/spring/docs/2.5.x/reference/aop.html.

  7. Mock implementations, unit testing - When dependent classes are implementations of interfaces, mock classes can be written that also implement those interfaces. The mock classes can be used to facilitate unit testing.

John Vasileff
Interfaces are not required to implement the visitor pattern.
deamon
+19  A: 

Great question. I'll refer you to Josh Bloch in Effective Java, who writes (item 16) why to prefer the use of interfaces over abstract classes. By the way, if you haven't got this book, I highly recommend it! Here is a summary of what he says:

  1. Existing classes can be easily retrofitted to implement a new interface. All you need to do is implement the interface and add the required methods. Existing classes cannot be retrofitted easily to extend a new abstract class.
  2. Interfaces are ideal for defining mix-ins. A mix-in interface allows classes to declare additional, optional behavior (for example, Comparable). It allows the optional functionality to be mixed in with the primary functionality. Abstract classes cannot define mix-ins -- a class cannot extend more than one parent.
  3. Interfaces allow for non-hierarchical frameworks. If you have a class that has the functionality of many interfaces, it can implement them all. Without interfaces, you would have to create a bloated class hierarchy with a class for every combination of attributes, resulting in combinatorial explosion.
  4. Interfaces enable safe functionality enhancements. You can create wrapper classes using the Decorator pattern, a robust and flexible design. A wrapper class implements and contains the same interface, forwarding some functionality to existing methods, while adding specialized behavior to other methods. You can't do this with abstract methods - you must use inheritance instead, which is more fragile.

What about the advantage of abstract classes providing basic implementation? You can provide an abstract skeletal implementation class with each interface. This combines the virtues of both interfaces and abstract classes. Skeletal implementations provide implementation assistance without imposing the severe constraints that abstract classes force when they serve as type definitions. For example, the Collections Framework defines the type using interfaces, and provides a skeletal implementation for each one.

Jonathan
+3  A: 

In my opinion, you see this so often because it is a very good practice that is often applied in the wrong situations.

There are many advantages to interfaces relative to abstract classes:

  • You can switch implementations w/o re-building code that depends on the interface. This is useful for: proxy classes, dependency injection, AOP, etc.
  • You can separate the API from the implementation in your code. This can be nice because it makes it obvious when you're changing code that will affect other modules.
  • It allows developers writing code that is dependent on your code to easily mock your API for testing purposes.

You gain the most advantage from interfaces when dealing with modules of code. However, there is no easy rule to determine where module boundaries should be. So this best practice is easy to over-use, especially when first designing some software.

Jay Stramel
+6  A: 

How come?

Because that's what all the books say. Like the GoF patterns, many people see it as universally good and don't ever think about whether or not it is really the right design.

How do you know all the relationships between objects that will occur within that interface?

You don't, and that's a problem.

If you already know those relationships, then why not just extend an abstract class?

Reasons to not extend an abstract class:

  1. You have radically different implementations and making a decent base class is too hard.
  2. You need to burn your one and only base class for something else.

If neither apply, go ahead and use an abstract class. It will save you a lot of time.

Questions you didn't ask:

What are the down-sides of using an interface?

You cannot change them. Unlike an abstract class, an interface is set in stone. Once you have one in use, extending it will break code, period.

Do I really need either?

Most of the time, no. Think really hard before you build any object hierarchy. A big problem in languages like Java is that it makes it way too easy to create massive, complicated object hierarchies.

Consider the classic example LameDuck inherits from Duck. Sounds easy, doesn't it?

Well, that is until you need to indicate that the duck has been injured and is now lame. Or indicate that the lame duck has been healed and can walk again. Java does not allow you to change an objects type, so using sub-types to indicate lameness doesn't actually work.

Jonathan Allen
A: 

One reason is that interfaces allow for growth and extensibility. Say, for example, that you have a method that takes an object as a parameter,

public void drink(coffee someDrink) {

}

Now let's say you want to use the exact same method, but pass a hotTea object. Well, you can't. You just hard-coded that above method to only use coffee objects. Maybe that's good, maybe that's bad. The downside of the above is that it strictly locks you in with one type of object when you'd like to pass all sorts of related objects.

By using an interface, say IHotDrink,

interface IHotDrink { }

and rewrting your above method to use the interface instead of the object,

public void drink(IHotDrink someDrink) {

}

Now you can pass all objects that implement the IHotDrink interface. Sure, you can write the exact same method that does the exact same thing with a different object parameter, but why? You're suddenly maintaining bloated code.

Anjisan
+1  A: 

Why extends is evil. This article is pretty much a direct answer to the question asked. I can think of almost no case where you would actually need an abstract class, and plenty of situations where it is a bad idea. This does not mean that implementations using abstract classes are bad, but you will have to take care so you do not make the interface contract dependent on artifacts of some specific implementation (case in point: the Stack class in Java).

One more thing: it is not necessary, or good practice, to have interfaces everywhere. Typically, you should identify when you need an interface and when you do not. In an ideal world, the second case should be implemented as a final class most of the time.

Eek
+5  A: 

Programming to an interface means respecting the "contract" created by using that interface

This is the single most misunderstood thing about interfaces.

There is no way to enforce any such contract with interfaces. Interfaces, by definition, cannot specify any behaviour at all. Classes are where behaviour happens.

This mistaken belief is so widespread as to be considered the conventional wisdom by many people. It is, however, wrong.

So this statement in the OP

Almost every Java book I read talks about using the interface as a way to share state and behavior between objects

is just not possible. Interfaces have neither state nor behaviour. They can define properties, that implementing classes must provide, but that's as close as they can get. You cannot share behaviour using interfaces.

You can make an assumption that people will implement an interface to provide the sort of behaviour implied by the name of its methods, but that's not anything like the same thing. And it places no restrictions at all on when such methods are called (eg that Start should be called before Stop).

This statement

Required for GoF type patterns, such as the visitor pattern

is also incorrect. The GoF book uses exactly zero interfaces, as they were not a feature of the languages used at the time. None of the patterns require interfaces, although some can use them. IMO, the Observer pattern is one in which interfaces can play a more elegant role (although the pattern is normally implemented using events nowadays). In the Visitor pattern it is almost always the case that a base Visitor class implementing default behaviour for each type of visited node is required, IME.

Personally, I think the answer to the question is threefold:

  1. Interfaces are seen by many as a silver bullet (these people usually labour under the "contract" misapprehension, or think that interfaces magically decouple their code)

  2. Java people are very focussed on using frameworks, many of which (rightly) require classes to implement their interfaces

  3. Interfaces were the best way to do some things before generics and annotations (attributes in C#) were introduced.

Interfaces are a very useful language feature, but are much abused. Symptoms include:

  1. An interface is only implemented by one class

  2. A class implements multiple interfaces. Often touted as an advantage of interfaces, usually it means that the class in question is violating the principle of separation of concerns.

  3. There is an inheritance hierarchy of interfaces (often mirrored by a hierarchy of classes). This is the situation you're trying to avoid by using interfaces in the first place. Too much inheritance is a bad thing, both for classes and interfaces.

All these things are code smells, IMO.

A: 

Its all about designing before coding.

If you dont know all the relationships between two objects after you have specified the interface then you have done a poor job of defining the interface -- which is relatively easy to fix.

If you had dived straight into coding and realised half way through you are missing something its a lot harder to fix.

James Anderson
+1  A: 

There are some excellent answers here, but if you're looking for a concrete reason, look no further than Unit Testing.

Consider that you want to test a method in the business logic that retrieves the current tax rate for the region where a transaction occurrs. To do this, the business logic class has to talk to the database via a Repository:

interface IRepository<T> { T Get(string key); }

class TaxRateRepository : IRepository<TaxRate> {
    protected internal TaxRateRepository() {}
    public TaxRate Get(string key) {
    // retrieve an TaxRate (obj) from database
    return obj; }
}

Throughout the code, use the type IRepository instead of TaxRateRepository.

The repository has a non-public constructor to encourage users (developers) to use the factory to instantiate the repository:

public static class RepositoryFactory {

    public RepositoryFactory() {
        TaxRateRepository = new TaxRateRepository(); }

    public static IRepository TaxRateRepository { get; protected set; }
    public static void SetTaxRateRepository(IRepository rep) {
        TaxRateRepository = rep; }
}

The factory is the only place where the TaxRateRepository class is referenced directly.

So you need some supporting classes for this example:

class TaxRate {
    public string Region { get; protected set; }
    decimal Rate { get; protected set; }
}

static class Business {
    static decimal GetRate(string region) { 
        var taxRate = RepositoryFactory.TaxRateRepository.Get(region);
        return taxRate.Rate; }
}

And there is also another other implementation of IRepository - the mock up:

class MockTaxRateRepository : IRepository<TaxRate> {
    public TaxRate ReturnValue { get; set; }
    public bool GetWasCalled { get; protected set; }
    public string KeyParamValue { get; protected set; }
    public TaxRate Get(string key) {
        GetWasCalled = true;
        KeyParamValue = key;
        return ReturnValue; }
}

Because the live code (Business Class) uses a Factory to get the Repository, in the unit test you plug in the MockRepository for the TaxRateRepository. Once the substitution is made, you can hard code the return value and make the database unneccessary.

class MyUnitTestFixture { 
    var rep = new MockTaxRateRepository();

    [FixtureSetup]
    void ConfigureFixture() {
        RepositoryFactory.SetTaxRateRepository(rep); }

    [Test]
    void Test() {
        var region = "NY.NY.Manhattan";
        var rate = 8.5m;
        rep.ReturnValue = new TaxRate { Rate = rate };

        var r = Business.GetRate(region);
        Assert.IsNotNull(r);
        Assert.IsTrue(rep.GetWasCalled);
        Assert.AreEqual(region, rep.KeyParamValue);
        Assert.AreEqual(r.Rate, rate); }
}

Remember, you want to test the business logic method only, not the repository, database, connection string, etc... There are different tests for each of those. By doing it this way, you can completely isolate the code that you are testing.

A side benefit is that you can also run the unit test without a database connection, which makes it faster, more portable (think multi-developer team in remote locations).

Another side benefit is that you can use the Test-Driven Development (TDD) process for the implementation phase of development. I don't strictly use TDD but a mix of TDD and old-school coding.

A: 

You could see this from a perl/python/ruby perspective :

  • when you pass an object as a parameter to a method you don't pass it's type , you just know that it must respond to some methods

I think considering java interfaces as an analogy to that would best explain this . You don't really pass a type , you just pass something that responds to a method ( a trait , if you will ).

Geo
A: 

I think the main reason to use interfaces in Java is the limitation to single inheritance. In many cases this lead to unnecessary complication and code duplication. Take a look at Traits in Scala: http://www.scala-lang.org/node/126 Traits are a special kind of abstract classes, but a class can extend many of them.

deamon