Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have had recently two telephone interviews where I've been asked about the differences between an Interface and an Abstract class. I have explained every aspect of them I could think of, but it seems they are waiting for me to mention something specific, and I don't know what it is.

From my experience I think the following is true. If I am missing a major point please let me know.

Interface:

Every single Method declared in an Interface will have to be implemented in the subclass. Only Events, Delegates, Properties (C#) and Methods can exist in a Interface. A class can implement multiple Interfaces.

Abstract Class:

Only Abstract methods have to be implemented by the subclass. An Abstract class can have normal methods with implementations. Abstract class can also have class variables beside Events, Delegates, Properties and Methods. A class can only implement one abstract class only due non-existence of Multi-inheritance in C#.

  1. After all that, the interviewer came up with the question "What if you had an Abstract class with only abstract methods? How would that be different from an interface?" I didn't know the answer but I think it's the inheritance as mentioned above right?

  2. An another interviewer asked me what if you had a Public variable inside the interface, how would that be different than in Abstract Class? I insisted you can't have a public variable inside an interface. I didn't know what he wanted to hear but he wasn't satisfied either.

See Also:

share|improve this question
63  
While I think it's important to know the difference between the two, this isn't a good interview question, imo. Unless the job was writing a book on OO topics. You're better off not working for those ding bats. – Alan Apr 17 '09 at 16:50
20  
@Alan: I actually like this as an interview question, but I wouldn't hound somebody this way about it - I'd probably post it more like "Where would you choose an interface over an abstract base class, when defining a hierarchy?", or something similar. – Reed Copsey Apr 17 '09 at 17:00
4  
Maybe they were after a more design focused answer... though like you I would have treated it as a technical question. – CurtainDog Jan 19 '10 at 6:32
2  
Nice tabular differences here: mindprod.com/jgloss/interfacevsabstract.html – Rajat_R Feb 1 at 3:38
1  
They may have been fishing for an answer of when or why you would use one over the other. That is what would truly display whether or not you get it - instead of just being able to define them. – decker Mar 24 at 20:19
show 3 more comments

18 Answers

up vote 102 down vote accepted

While your question indicates it's for "general OO", it really seems to be focusing on .NET use of these terms.

In .NET (similar for Java):

  • interfaces can have no state or implementation
  • a class that implements an interface must provide an implementation of all the methods of that interface
  • abstract classes may contain state (data members) and/or implementation (methods)
  • abstract classes can be inherited without implementing the abstract methods (though such a derived class is abstract itslef)
  • interfaces may be multiple-inherited, abstract classes may not (this is probably the key concrete reason for interfaces to exist separately from abtract classes - they permit an implementation of multiple inheritance that removes many of the problems of general MI).

As general OO terms, the differences are not necessarily well-defined. For example, there are C++ programmers who may hold similar rigid definitions (interfaces are a strict subset of abstract classes that cannot contain implementation), while some may say that an abstract class with some default implementations is still an interface or that a non-abstract class can still define an interface.

Indeed, there is a C++ idiom called the Non-Virtual Interface (NVI) where the public methods are non-virtual methods that 'thunk' to private virtual methods:

share|improve this answer
1  
Thank you. I think since your answer mentions state + a good overview of all rest, i mark your response as a final answer. You are right I asked for general OO, since my first interviewer asked for general OO, but since I am a C# guy, I tend to forget that. ;-) Also thanks for the C++ explanation, as always c++ is mind blowing. – Kave Apr 17 '09 at 17:34
1  
I think a key point in the explanation Michael provided is that when implementing an interface you MUST implement all members in the interface, but when inheriting from an abstract class it's NOT REQUIRED by a child class to implement its parent's members – Guillermo Gomez Mar 2 '10 at 21:12
5  
+1: I'd be willing to bet that those monkeys hosting the interview don't even realise that other languages implement OO differently. – Lightness Races in Orbit Jan 11 '12 at 10:49

How about an analogy: when I was in the Air Force, I went to pilot training and became a USAF pilot. At that point I wasn't qualified to fly anything, and had to attend aircraft type training. Once I qualified, I was a pilot (Abstract class) and a C-141 pilot (concrete class). At one of my assignments, I was given an additional duty: Safety Officer. Now I was still a pilot and a C-141 pilot, but I also performed Safety Officer duties (I implemented ISafetyOfficer, so to speak). A pilot wasn't required to be a safety officer, other people could have done it as well.

All USAF pilots have to follow certain Air Force-wide regulations, and all C-141 (or F-16, or T-38) pilots 'are' USAF pilots. Anyone can be a safety officer. So, to summarize:

  • Pilot: abstract class
  • C-141 Pilot: concrete class
  • ISafety Officer: interface
  • Safety Officer : class that implements ISafety Officer
share|improve this answer
10  
I really like this analogy, it uses a simple example to explain a slightly complex topic – Kevin Bowersox Jan 7 '12 at 16:37
4  
This is the best way to understand complex OO terminology. In short all theory is worth only when you can make use of it practically. @Jay you rexample is really easy to grasp then several bullet points (mostly penetrating mind instead of being absorbed!) – v s Sep 20 '12 at 8:56
   
Great analogy, small question though. In your example, you (Jay) are a class that inherits from C-141 and implements ISafetyOfficer? – enforge Jan 5 at 3:42
   
Good point enforge, I think that is correct; in C#, it would be like class Jay : C-141Pilot, ISafetyOfficer { } where Jay inherits from C-141Pilot and implements ISafetyOfficer – Jay Jan 8 at 1:04
4  
I'm still a bit confused. Say, you now got the F-16 and T-38 qualifications, so now class Jay cannot inherit from multiple classes (C-141 pilot, F-16 pilot and T-38 pilot), does that mean that whose classes should become interfaces? Thanks – Alex Okrushko Jan 30 at 15:31
show 1 more comment

There are a couple of other differences -

Interfaces can't have any concrete implementations. Abstract base classes can. This allows you to provide concrete implementations there. This can allow an abstract base class to actually provide a more rigorous contract, wheras an interface really only describes how a class is used. (The abstract base class can have non-virtual members defining the behavior, which gives more control to the base class author.)

More than one interface can be implemented on a class. A class can only derive from a single abstract base class. This allows for polymorphic hierarchy using interfaces, but not abstract base classes. This also allows for a pseudo-multi-inheritance using interfaces.

Abstract base classes can be modified in v2+ without breaking the API. Changes to interfaces are breaking changes.

[C#/.NET Specific] Interfaces, unlike abstract base classes, can be applied to value types (structs). Structs cannot inherit from abstract base classes. This allows behavioral contracts/usage guidelines to be applied on value types.

share|improve this answer
2  
+1 for the key point that more than one interface can be implemented on a class. – altCognito Apr 17 '09 at 16:50
That's the one real advantage to interfaces over abstract base classes, IMO. Otherwise, I agree with the .NET design guidelines, that now say to "prefer abstract base classes over interfaces" – Reed Copsey Apr 17 '09 at 16:51
Although, it would be keen if you could add the point that it's also interfaces can be applied to any class. – altCognito Apr 17 '09 at 16:52
@altCognito: Figured that was kind of handled with the second paragraph. This did remind me, though, that interfaces work on value types, so I added that. – Reed Copsey Apr 17 '09 at 16:59
Thank you very much for this exact description. It is indeed very helpful. I am new here. It is a pity you cant select two responses as "answer". One thing that confuses me is your usage of Abstract 'base' class. All abstract classes are meant to be a base class of a subclass. Why naming the 'base' extra? – Kave Apr 17 '09 at 17:20
show 3 more comments

I think the answer they are looking for is the fundamental or OPPS philosophical difference.

The abstract class inheritance is used when the derived class shares the core properties and behaviour of the abstract class. The kind of behaviour that actually defines the class.

On the other hand interface inheritance is used when the classes share peripheral behaviour, ones which do not necessarily define the derived class.

For eg. A Car and a Truck share a lot of core properties and behaviour of an Automobile abstract class, but they also share some peripheral behaviour like Generate exhaust which even non automobile classes like Drillers or PowerGenerators share and doesn't necessarily defines a Car or a Truck, so Car, Truck, Driller and PowerGenerator can all share the same interface IExhaust.

share|improve this answer
2  
I think an even better analogy would be "usesFuel" which would show the contract nature of the interface. – Pureferret Sep 4 '12 at 12:15
1  
I like this explanation a lot. Thanks Prasun. – Pavan Dec 7 '12 at 20:48
Think of "what it is," versus "what it does." If and only if, you have four wheels, a body with doors, and an engine, then you're a car, and must derive from the abstract class which defines what a car is. But all sorts of completely dissimilar things may implement a fuel nozzle - cars, planes, simple fuel containers (gas cans). With an abstract class, you can define code and default implementations; with an interface, you cannot implement; you can only define the interface. – Edward Ned Harvey Mar 25 at 16:05

Short: Abstract classes are used for Modelling a class hierarchy of similar looking classes (For example Animal can be abstract class and Human , Lion, Tiger can be concrete derived classes)

AND

Interface is used for Communication between 2 similar / non similar classes which does not care about type of the class implementing Interface(e.g. Height can be interface property and it can be implemented by Human , Building , Tree. It does not matter if you can eat , you can swim you can die or anything.. it matters only a thing that you need to have Height (implementation in you class) ).

share|improve this answer

The interviewers are barking up an odd tree. For languages like C# and Java, there is a difference, but in other languages like C++ there is not. OO theory doesn't differentiate the two, merely the syntax of language.

An abstract class is a class with both implementation and interface (pure virtual methods) that will be inherited. Interfaces generally do not have any implementation but only pure virtual functions.

In C# or Java an abstract class without any implementation differs from an interface only in the syntax used to inherit from it and the fact you can only inherit from one.

share|improve this answer

By implementing interfaces you are achieving composition ("has-a" relationships) instead of inheritance ("is-a" relationships). That is an important principle to remember when it comes to things like design patterns where you need to use interfaces to achieve a composition of behaviors instead of an inheritance.

share|improve this answer
7  
Interfaces achieve, IMO, more of an "Acts-as-a" relationship. Encapsulation achieves composition better than an interface. – Reed Copsey Apr 17 '09 at 17:01
2  
I dont think implementing interfaces would come under composition. – Pavan Dec 7 '12 at 20:49

Conceptually speaking, keeping the language specific implementation, rules, benefits and achieving any programming goal by using anyone or both, can or cant have code/data/property, blah blah, single or multiple inheritance, all aside

1- Abstract (or pure abstract) Class is a mean to implement hierarchy. If your business objects look somewhat structurally similar, representing a parent child (hierarchy) kind of relationship only then inheritance/Abstract classes will be used. If your business model does not have a hierarchy then inheritance should not be used (here i am not talking about programming logic e.g. some design patterns require inheritance). Conceptually, abstract class is a method to implement hierarchy of a business model in OOP, it has nothing to do with Interfaces, actually comparing Abstract class with Interface is meaningless because both are conceptually totally different things, it is asked in interviews just to check the concepts because it looks both provide somewhat same functionality when implementation is concerned and we programmers usually emphasize more on coding. [Keep this in mind as well that Abstraction is different than Abstract Class].

2- Interface is a contract, a complete business functionality represented by one of more set of functions. That is why it is implemented and not inherited. A business object (part of a hierarchy or not) can have any number of complete business functionality. It has nothing to do with abstract classes means inheritance in general. For example, a human can RUN, an elephant can RUN, a bird can RUN, and so on, all these objects of different hierarchy would implement the RUN interface or EAT or SPEAK interface. Dont go into implementation as you might implement it as having abstract classes for each type implementing these interfaces. An object of any hierarchy can have a functionality(interface) which has nothing to do with its hierarchy.

I believe, Interfaces were not invented to achieve multiple inheritance or to expose public behavior, and similarly, pure abstract classes are not to over rule interfaces but Interface is a functionality that an object can do (via functions of that interface) and Abstract Class represents a parent of a hierarchy to produce children having core structure (property+functionality) of the parent

When you are asked about the difference, it is actually conceptual difference not the difference in language specific implementation unless asked explicitly.

I believe, both interviewers were expecting one line straight forward difference between these two and when you failed they tried to drove you towards this difference by implementing ONE as the OTHER

What if you had an Abstract class with only abstract methods?

share|improve this answer

For .Net,

Your answer to The second interviewer is also the answer to the first one... Abstract classes can have implementation, AND state, interfaces cannot...

EDIT: On another note, I wouldn't even use the phrase 'subclass' (or the 'inheritance' phrase) to describe classes that are 'defined to implement' an interface. To me, an interface is a definition of a contract that a class must conform to if it has been defined to 'implement' that interface. It does not inherit anything... You have to add everything yourself, explicitly.

share|improve this answer
Yes! State! Thats what the second interviewer meant with his weird way of saying "public variable" inside an interface. gosh! Abstract Classes can have state, interfaces can't! And yeah the everyone else agrees on the differences between their ways of inheritance as well, which I had forgotten to mention but figured out already later. :) Thanks everyone! – Kave Apr 17 '09 at 17:11
More than just state.... Abstract classes can have IMPLEMENTATION. i.e., they can have methods with code in them that actually runs and does something, which gets inhertited and executed by instances of the base classes... Not so with interfaces – Charles Bretana Mar 10 '11 at 15:51

1) An interface can be seen as a pure Abstract Class, is the same, but despite this, is not the same to implement an interface and inheriting from an abstract class. When you inherit from this pure abstract class you are defining a hierarchy -> inheritance, if you implement the interface you are not, and you can implement as many interfaces as you want, but you can only inherit from one class.

2) You can define a property in an interface, so the class that implements that interface must have that property.

For example:

  public interface IVariable
  {
      string name {get; set;}
  }

The class that implements that interface must have a property like that.

share|improve this answer

Inheritance
Consider a car and a bus. They are two different vehicles. But still they share some common properties like they have a steering, brakes, gears, engine etc.
So with the inheritance concept this can be represented as following..

public class Vehicle {
    public Driver driver;
    public Seat[] seatArray; //In java and most of the Object Oriented Programming(OOP) languages, square brackets are used to denote arrays(Collections).
    //You can define as many properties as you want here..
}

Now a Bicycle..

public class Bicycle extends Vehicle {
    //You define properties which are unique to bicycles here..
    public Pedal pedal;
}

And a Car..

public class Car extends Vehicle {
    public Engine engine;
    public Door[] doors;
}

That's all about Inheritance. We use them to classify objects into simpler Base forms and their children as we saw above.

Abstract Classes

Abstract classes are incomplete objects. To understand it further, let's consider the vehicle analogy once again.
A vehicle can be driven. Right? But different vehicles are driven in different ways.. For example, You cannot drive a car just as you drive a Bicycle.
So how to represent the drive function of a vehicle? It is harder to check what type of vehicle it is and drive it with its own function; you would have to change the Driver class again and again when adding a new type of vehicle.
Here comes the role of abstract classes and methods. You can define the drive method as abstract to tell that every inheriting children must implement this function.
So if you modify the vehicle class..

//......Code of Vehicle Class
abstract public void Drive();
//.....Code continues

The Bicycle and Car must also specify how to drive it. Otherwise the code won't compile and an error is thrown.
In short.. an abstract class is a partially incomplete class with some incomplete functions, which the inheriting children must specify their own.

Interfaces Interfaces are totally incomplete. They do not have any properties. They just indicate that the inheriting children is capable of doing something..
Suppose you have different types of mobile phones with you. Each of them have different ways to do different functions; Ex: call a person. The maker of the phone specifies how to do it. Here the mobile phones can dial a number - that is, it is dial-able. Let's represent this as an interface.

public interface Dialable {
    public void Dial(Number n);
}

Here the maker of the Dialable defines how to dial a number. You just need to give it a number to dial.

Dialable myPhone1 = new Dialable() {
    public void Dial(Number n) {
        //Do the phone1's own way to dial a number
    }
}

Dialable myPhone2 = new Dialable() {
    public void Dial(Number n) {
        //Do the phone2's own way to dial a number
    }
}

Here by using interfaces instead of abstract classes, you need not worry about it's properties. Ex: Does it have a touch-screen or dial pad, Is it a fixed landline phone or mobile phone. You just need to know if it is dialable; does it inherit(or implement) the Dialable interface.
Interfaces are commonly used by developers to ensure interoperability(use interchangeably) between objects, as far as they share a common function (just like you may change to a landline or mobile phone, as far as you just need to dial a number). In short, interfaces are much simpler version of abstract classes, without any properties.
Also note that that you may implement(inherit) as many interfaces as you want but you may only extend(inherit) a single parent class.

More Info Abstract classes vs Interfaces

share|improve this answer
answered by him/herself... – Nitram76 Jun 14 at 13:14
Sorry, Could you please explain what do you mean @Nitram76? – farseen 12 hours ago

From another answer of mine, mostly dealing with when to use one versus the other:

In my experience, interfaces are best used when you have several classes which each need to respond to the same method or methods so that they can be used interchangeably by other code which will be written against those classes' common interface. The best use of an interface is when the protocol is important but the underlying logic may be different for each class. If you would otherwise be duplicating logic, consider abstract classes or standard class inheritance instead.

share|improve this answer

Interfaces are light weight way to enforce a particular behavior. That is one way to think of.

share|improve this answer

Couple of other differences:

Abstract classes can have static methods, properties, fields etc. and operators, interfaces can't. Cast operator allows casting to/from abstract class but don't allow casting to/from interface.

So pretty much you can use abstract class on its own even if it is never implemented (through its static members) and you can't use interface on its own in any way.

share|improve this answer
in Java, interface can have member variable but by default they become public static ..so interface can have static fields – Jitendra Vispute Jun 10 at 11:12
  1. Interface:
    • We do not implement(or define) methods, we do that in derived classes.
    • We do not declare member variables in interfaces.
    • Interfaces express the HAS-A relationship. That means it is a mask of objects.
  2. Abstract class:
    • We can declare and define methods in abstract class.
    • We hide constructors of it. That means there is no object created from it directly.
    • Abstract class can holds member variables.
    • Derived classes inherit to abstract class that mean objects from derived classes are not masked, it inherit to abstract class. The relationship in this case is IS-A.

This is my opinion.

share|improve this answer

The answer to the second question may be that the public variable defined in interface is static final by default while the public variable in abstract class is an instance variable .

share|improve this answer

though question is quite old but for upcoming readers I would like to add the strong point,

In favor to interfaces

Interface can be injected using any DI tools where as Abstract class injection supported by few.

share|improve this answer
1  
I believe you mean that a DI tool can inject a class which implements an interface. Some such tools can also inject classes derived from an abstract class, or are you saying that is impossible? – John Saunders Aug 31 '12 at 14:30
corrected my answer! – alliswell Sep 1 '12 at 2:05

Difference between Java Interface and Abstract Class

  1. Main difference is methods of a Java interface are implicitly abstract and cannot have implementations. A Java abstract class can have instance methods that implements a default behavior.

  2. Variables declared in a Java interface is by default final. An abstract class may contain non-final variables.

  3. Members of a Java interface are public by default. A Java abstract class can have the usual flavors of class members like private, protected, etc..

  4. Java interface should be implemented using keyword “implements”; A Java abstract class should be extended using keyword “extends”.

  5. An interface can extend another Java interface only, an abstract class can extend another Java class and implement multiple Java interfaces.

  6. A Java class can implement multiple interfaces but it can extend only one abstract class.

  7. Interface is absolutely abstract and cannot be instantiated; A Java abstract class also cannot be instantiated, but can be invoked if a main() exists.

  8. In comparison with java abstract classes, java interfaces are slow as it requires extra indirection.

share|improve this answer

protected by Bo Persson Oct 23 '11 at 18:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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