473,387 Members | 1,641 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Difference Between Interface and Abstract Class

Difference Between Interface and Abstract Class?

Oct 2 '07 #1
9 3018
Hi,

That is the same as an image of a chick and an egg (for vb a scrambled egg).

(An Interface shows the contract how a class should look, an abstract class
(the name in VB is mustinherit) is a real class, however you have always to
inherit it).

Cor
Oct 2 '07 #2
"msbs1984" <u37888@uweschrieb
Difference Between Interface and Abstract Class?
In addition to Cor,

If there is no common code and no common fields (=class level variables) of
all classes that would inherit from an abstract class, declare an interface
instead.
Armin

Oct 2 '07 #3
On Oct 2, 7:18 am, "Armin Zingler" <az.nos...@freenet.dewrote:
"msbs1984" <u37888@uweschrieb
Difference Between Interface and Abstract Class?

In addition to Cor,

If there is no common code and no common fields (=class level variables) of
all classes that would inherit from an abstract class, declare an interface
instead.

Armin
In addition to Cor and Armin,

Remember that a class can only inherit a single class, but can
implement any number of interfaces. For that reason I normally try to
use interfaces unless there is absolutely a terrific reason to use an
abstract class. It allows me more flexibility if a project is re-
purposed (of course we know no managers would ever change a project's
design mid way through...)

By the Cor, I like the "(for vb a scrambled egg)" line. :-)

Thanks,

Seth Rowe

Oct 2 '07 #4
"rowe_newsgroups" <ro********@yahoo.comschrieb
Remember that a class can only inherit a single class, but can
implement any number of interfaces.
Good point. :)
Armin
Oct 2 '07 #5
"msbs1984" <u37888@uweschrieb:
Difference Between Interface and Abstract Class?

'MustInherit' classes can contain implementation code whereas interfaces are
just interfaces.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Oct 2 '07 #6
On Oct 2, 6:37 am, "msbs1984" <u37888@uwewrote:
Difference Between Interface and Abstract Class?
They're used for different purposes and different reasons:

Interface usage example:

I have a dll with, say, 10 different classes, each one does something
totally different than the rest. (Actual app was communication
decoding, needed to be able to decode several different communications
protocols, created a separate class for each one.)

I wouldn't know until run time which of these classes I had to use.
(The app called a dll which read a config file which told the dll
which protocol class to load.)

Since I didn't know until run time which class to use, I couldn't
declare a specific class instance. (I could have had some branching
code in the app but then I'd have to recompile and reinstall every
time I wanted to add a new protocol in the future. More on this
later.)

I declared an interface and the interface was the "face" that all
these classes presented to the app.

I did not want the app to be aware of or have to deal with these
different classes, so I just declared an object variable as though it
were going to be an instance of the interface just like it was a
class.

Elsewhere, I created an instance of the appropriate class and passed a
referrence to the interface object variable.

Meanwhile, the app dealt with just the interface, never knowing what
was behind the interface. Regardless of what actual class instance
was "plugged into" the other side of the interface, the same face was
always presented to the app.

Abstract Class Example:
In the above app, the 10 decoding classes actually shared quite a bit
of common logic. So first I created an abstract class that
implemented the interface and also implemented all the common logic.
Then I created the 10 classes, each one inheriting the base class
already containing all the common logic and interface, and then
finally implemented unique decoding logic in each of the classes.

Another interface example:
In later generations of this app, I wanted to be able to upgrade and
add decoding modules to an installed copy of the app later without
having to recompile and reinstall the entire app every time I wanted
to add a new protocol. (Essentially I wanted to be able to add more
communications drivers in the future just by copying in a new dll with
the new protocol.)

So again, the main app just dealt with the interface and never knew
where the actual class instance that did the decoding came from. A
separate dll read a config file, some info in the config file told the
dll whether the protocol to use would be found in one of the compiled
classes or in a new driver dll that had been copied in, the name of
the new dll, and the name of the class in the dll to use. The dll
would open the new driver dll, create an instance of the desired
decoding class and pass it back to the interface object variable owned
by the app. The app never knew nor cared where or how the actual
class instance came from. All it had to deal with was the same
interface regardless of where or how the actual class instance got
there.

Oct 4 '07 #7
On Oct 2, 5:37 am, "msbs1984" <u37888@uwewrote:
Difference Between Interface and Abstract Class?
Just another less-than-obvious difference is that adding a member to
an interface breaks version compatibility whereas adding a member to
an abstract class does not.

Brian

Oct 4 '07 #8
Brian,
>Just another less-than-obvious difference is that adding a member to
an interface breaks version compatibility whereas adding a member to
an abstract class does not.
If you add an abstract method to a class it will break existing
derived classes.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Oct 4 '07 #9
On Oct 4, 4:53 pm, Mattias Sjögren <mattias.dont.want.s...@mvps.org>
wrote:
Brian,
Just another less-than-obvious difference is that adding a member to
an interface breaks version compatibility whereas adding a member to
an abstract class does not.

If you add an abstract method to a class it will break existing
derived classes.

Mattias

--
True. Good clarification.

Oct 5 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: G. Smith Q news | last post by:
What is the difference between an abstract class and an Interface. As a novice, they both seem to serve the same purpose?
9
by: Anon Email | last post by:
Hi people, I'm learning about header files in C++. The following is code from Bartosz Milewski: // Code const int maxStack = 16; class IStack
20
by: Ole Hanson | last post by:
I am accessing my database through an interface, to allow future substitution of the physical datastore - hence I would like to declare in my Interface that my DAL-objects implementing the...
10
by: Brett | last post by:
I'm still trying to figure out concrete reasons to use one over the other. I understand the abstract class can have implementation in its methods and derived classes can only inherit one abstract...
10
by: Joe | last post by:
My question is more an OOD question. I know *how* to implement both abstract classes and interfaces. Here's my question - under what circumstacnes does one use an abstract class and under what...
5
by: Tony Johansson | last post by:
Hello!! Assume you have an Interface called ITest with these three method declarations. interface ITest { void foo1(); void foo2(); void foo3(); }
4
by: skishorev | last post by:
and what is object delagation, and how it can implemented?
8
by: weird0 | last post by:
Can anyone explain briefly what is the difference between inheritance and polymorphism? i read and seem to forget it again and again... Can anyone along with good examples of c# explain the...
52
by: Ben Voigt [C++ MVP] | last post by:
I get C:\Programming\LTM\devtools\UselessJunkForDissassembly\Class1.cs(360,27): error CS0535: 'UselessJunkForDissassembly.InvocableInternals' does not implement interface member...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.