vote up -2 vote down star

abstract class can inherits by other class , and force people to override the abstract function, abstract property etc..

interface also can implements by other class, also force people to implements the function, property,indexers etc..

the only different i found is visual studio is smart to auto generate the nessesary member of this interface.

so , what's the different?

thanks you~

flag

1  
possible duplivates include: stackoverflow.com/questions/639592/… (java) stackoverflow.com/questions/90851/… – Johannes Rudolph Nov 2 at 7:09

6 Answers

vote up 1 vote down check

In .NET, classes are limited to single inheritance but can implement any number of interfaces. If you inherit from an abstract class, that's the only one you can use. It may not be a big deal, but it would prevent you from perhaps inheriting from MarshalByRefObject down the road, as an example.

Also, the behavior defined by an abstract class is limited to the classes that inherit from it. On the other hand, behaviors defined by interfaces (IDisposable, IPrintable, etc.) can be applied across class hierarchies.

link|flag
Single inheritance is true for all .NET languages. – shoosh Nov 2 at 7:35
Thanks for clarifying. I've updated the post. – Matt Davis Nov 2 at 7:38
vote up 1 vote down
  • You can provide partial implementation with an abstract class.
  • Interfaces don't smash the inheritance line; abstract classes do. You might want to mandate behaviour/capabilities without creating an is-a relationship.
link|flag
Plus, an interface in c# is similar to a pure virtual class in C++. – KMan Nov 2 at 7:10
vote up 0 vote down

An interface can have no implementation at all but an abstract class can implement methods and properties.

link|flag
vote up -1 vote down

A little in addition to @Rob's answer, there is one place where the choise is particuarly important between an interface and abstract class...

If your developing a framework (rather than application) Interfaces can cause problems down the line if you need to add a new method to it after code is already out in the world.

i.e. if you define an iterface:

public interface IFoo
{
     void DoFoo();
}

And if a class implements that interface:

public class Fooer : IFoo
{
     void DoFoo()
     {
         return "bla";
     }
}

If you needed to add a new method to IFoo:

public interface IFoo
{
     void DoFoo();
     void DoKungFoo(); // this would break existing libraries out in the world
}

you couldnt if existing code out in the world that references you framework library exisits, it would break them. In this case, you should make the interface an abstract class instead (from the start), and then if / when you need to change it, you can do so with a default implementation so existing code will still compile.

Important decision, as using abstract class will kill ure inheritance line as Rob said...

link|flag
Well, it will compile, but the behavior of this code may be unexpected for user of your framework. – SMART_n Nov 2 at 7:41
I think you're talking COM interfaces, not .NET interfaces. In .NET, modifying an interface by adding a method could easily be done without breaking anything simply by changing the version of the assembly, allowing both versions to reside alongside one another without conflict. – Matt Davis Nov 2 at 7:45
vote up 4 vote down

Conceptually, I see a simple difference.

An interface defines expectations for a class. It declares that an implementor must provide certain behaviours (methods, properties, events). It doesn't prescribe how a class should work, merely what it should do.

An abstract class is a base class that cannot be instantiated on its own. Usually it provides a partial implementation that can be shared among concrete classes that derive from it. Thus it prescribes how a class should work.

This in turn leads to several practical differences because of language constraints (eg C# doesn't support multiple inheritance, except for interfaces). Which to use really depends on what you are trying to achieve.

link|flag
You don't inherit an interface, do you? I thought you implemented an interface... (Could be wrong though) – Svish Nov 2 at 7:53
Yes you are correct. You inherit from a base class, and you implement an interface. Really, the two words serve to distinguish the nature of the base class / derived class relationship. I only described it that way so that I didn't get anyone jumping on me saying "C# supports multiple inheritance for interfaces". But I may be wrong here too... – Nader Shirazie Nov 2 at 8:21
vote up 0 vote down

Adding to @Jeremy short and concise answer :) An abstract class would have the "abstract" and "virtual" keywords that would specify if a method or a property have an implementation. An abstract method/property would have to be implemented in the concrete class, but the virtual method/property may not be overridden in the concrete class since it already has an implementation in the abstract class...

I hope I made myself clear :))

link|flag

Your Answer

Get an OpenID
or

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