473,387 Members | 1,374 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.

Interfaces vs Classes

We are having one of those religious debates at work: Interfaces vs
Classes. My take is that Classes give you more flexibility. You can
enforce a contract on the descendant classes by marking methods abstract
(which is all that an interface does). In addition, the classes allow
you to be flexible by adding functionality that child classes inherit.
Or by providing optional functionality via virtual methods.

Now, I understand that Interfaces have its place, but I am having a hard
time finding a situation where the classes (via inheritance) do not
provide an identical or better solution.

Am I missing something? I am open to arguments from both sides.

Regards.
Nov 16 '05 #1
30 2459
Hi Frank,

It is normal to feel like that. The big advantage of using interfaces is
that they extend the use of polymorphism beyond the class hierarchy. They
are normally used to create small frameworks as well. Here are two examples:

- imagine you are responsible for writing an ATM application for a bank.
Thru your application you will allow users to Deposit, Withdraw and check
their Balance for Checking accounts and Savings Accounts. No matter what
kind of account your application handles, it needs to execute those tree
operations. You can sure derive Checking and Savings from an abstract
BankAccount that contain the necessary members. Now imagine that in the
future, your ATM application may also be used to access Credit Card accounts
and that the CreditCard class is not in the same inheritance hierarchy as
the BankAccounts. You still need to force it to have the Deposit, Withdraw
and Balance members. An interface is the perfect solution here.

- another real example. You are probably aware of the Sort method for the
Array class. It sorts data in a single dimension array. Remember that arrays
can be of any type: integers, strings, Animals, BankAccounts, etc. The Sort
method does not care about the data type. It access the underlying object
thru the IComparable interface. Therefore, to make your classes sortable,
you need to implement the IComparable interface. This has nothing to do with
inheritance.

I hope this helps a little bit.

Telmo Sampaio
MCT
"Frank Rizzo" <no**@none.com> wrote in message
news:ey**************@tk2msftngp13.phx.gbl...
We are having one of those religious debates at work: Interfaces vs
Classes. My take is that Classes give you more flexibility. You can
enforce a contract on the descendant classes by marking methods abstract
(which is all that an interface does). In addition, the classes allow you
to be flexible by adding functionality that child classes inherit. Or by
providing optional functionality via virtual methods.

Now, I understand that Interfaces have its place, but I am having a hard
time finding a situation where the classes (via inheritance) do not
provide an identical or better solution.

Am I missing something? I am open to arguments from both sides.

Regards.

Nov 16 '05 #2
Lets say you wanted to make a Plugin architecture to your application
where 3rd party developers could develop components for your app to use
at runtime. Would you be willing to give them the class or would you
rather just tell them about the interface? :-)
QED.

Nov 16 '05 #3
Remoting.
You do not want to distribute server based classes, just the interface to
that class.

- Colin.

"Frank Rizzo" <no**@none.com> wrote in message
news:ey**************@tk2msftngp13.phx.gbl...
We are having one of those religious debates at work: Interfaces vs
Classes. My take is that Classes give you more flexibility. You can
enforce a contract on the descendant classes by marking methods abstract
(which is all that an interface does). In addition, the classes allow
you to be flexible by adding functionality that child classes inherit.
Or by providing optional functionality via virtual methods.

Now, I understand that Interfaces have its place, but I am having a hard
time finding a situation where the classes (via inheritance) do not
provide an identical or better solution.

Am I missing something? I am open to arguments from both sides.

Regards.

Nov 16 '05 #4
Frank...In C++ you have a good argument, but not in C# simply due to the
fact that C# does not support multiple inheritance of implementation eg.
C++ style multiple inheritance. So you are limited to extending from a
single class. Interfaces are much more flexible in that you can
implement more than one interface.

In summary, if you have a well defined contract that will be implemented
by many classes use an interface. If the contract is evolving, consider
using a base class as you suggest. Use a base class if you need to
include implementation details.

Regards,
Jeff
Now, I understand that Interfaces have its place, but I am having a hard
time finding a situation where the classes (via inheritance) do not
provide an identical or better solution.
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 16 '05 #5
Frank Rizzo wrote:
We are having one of those religious debates at work: Interfaces vs
Classes. My take is that Classes give you more flexibility.
Well, there are two dimensions of flexibility here: for the definer and
the user of the interface/class.

All the languages i know that distiguish between interfaces and classes
(C#, JAVA, ...not C++) have this distinction because they don't want to
have the multiple-inheritance problem with offset-based member-fields.
In short you can mutiple implement interfaces and singularly inherit
classes.

The multiple-inheritance problem does not prevent interfaces from
actually defining code, which unfortunately none of C# or JAVA allows.

So a class allows you to specify static- and member-fields (and method
content), giving the definer flexibility.

Using an interface allow implementation to still inherit and to
implement other interfaces, giving the implementer flexibility.

Obviosly, for actual implementation a class is needed.

Other than that, my opinion is that neither classes nor interfaces
should be "generally preferred" when passing data around, since they are
both valuable assets in programming with respective strengths and
weaknesses. You need to choose based on the situation, not a "general rule".
You can
enforce a contract on the descendant classes by marking methods abstract
(which is all that an interface does).
So, If that's what you need, use an interface (if it's not too much
code), otherwise use a class.

Remember that you can reuse code by other means than inheritance,
compostion works fine (especially in garbage-collected languages). You
can also define helper-functions which implementers can use.
In addition, the classes allow
you to be flexible by adding functionality that child classes inherit.
This is valuable if all implementations shares a way of coding... or if
there is only 1 :)

But, you could easily put that code in a helper-class and allow other
the choice of whether to use the helper-class.

interface Foo { void f(int i); }
class DefaultFoo implements Foo { void f(int i) { /* impl. */ } }

But remember, less lines of code also means less bugs, so use the
construct judiciously :)
Or by providing optional functionality via virtual methods.
Optional? you specificly mean optionally overridden, right?

The same construct as above applies.
Now, I understand that Interfaces have its place, but I am having a hard
time finding a situation where the classes (via inheritance) do not
provide an identical or better solution.
If you are in C# (or JAVA): Multiple implementation, it's the one and
only thing that interfaces can do that classes cannot.

You can argue all day about whether it's a good or bad idea, but it is
often needed to bridge two colliding conceptions of the same thing...
*very* often frameworks give you this problem.

If you do cross-language integration using .NET, for example using COM,
you should know that some tools only map interfaces between languages.
Am I missing something? I am open to arguments from both sides.


Well, multiple implementation is a valuable thing to be able to do.
Besides, there are many ways to workaround the problem that interfaces
cannot specify method-code.

I think you really just have to accept that neither interfaces nor
classes are superfluous and you need to be able to decide in a
case-by-case manner which one to use in order to minimize work and
maximize usability.

--
Helge
Nov 16 '05 #6
Frank,
I can't but wonder if you are the Frank Rizzo from all the Jerky Boys
albums. :)

Anyway, I rule of thumb I like is to favor an Interface first. Then
that can define that portion of your API. Then if you have some common
functionality that you would like to be implemented in a base class,
the argument to use an abstract class is stronger. Under no condition
should you use an abstract class with only abstract members. That adds
no value beyond the interface implementation but puts an unneeded
restriction on its use.

Image if we didn't have an IDisposable interface but an abstract class
instead. To implement the pattern, we'd have to derive from that
class. Classes that already have a base would be stuck like chuck and
would not be able to implement the pattern.

Sometimes these arguments don't hit home until you've made an
implementation using inheritence and been personally hit with one of
these roadblocks. There's no replacement for experiences!

Best regards,
Jeffrey Palermo

Nov 16 '05 #7
Just to add to the excellent discussions here...

I, too, favor interfaces first, and then base classes. This is because of a
common issue with OO designs where it is tempting to create "tall trees" in
the heirarchy, each decendent specializing just one little bit of the
ancestor, until you end up with a tree that is five, six, even seven levels
deep. This becomes intensely difficult to debug, and a single defect in a
base class can make the entire structure frail.

Using Interfaces gives you the advantage of an enforced contract (you know),
multiple inheritance (as was pointed out by other posters) and also
discourages these tall trees.

Sometimes we need them. Don't get me wrong. There is no "one right answer"
to anything in OOP. But I find that it's a good idea to consider,
carefully, what it is I want to "abstract" in my class. The effort that I
expend trying to solve the problem with interfaces, first, helps me to do
that.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Frank Rizzo" <no**@none.com> wrote in message
news:ey**************@tk2msftngp13.phx.gbl...
We are having one of those religious debates at work: Interfaces vs
Classes. My take is that Classes give you more flexibility. You can
enforce a contract on the descendant classes by marking methods abstract
(which is all that an interface does). In addition, the classes allow you
to be flexible by adding functionality that child classes inherit. Or by
providing optional functionality via virtual methods.

Now, I understand that Interfaces have its place, but I am having a hard
time finding a situation where the classes (via inheritance) do not
provide an identical or better solution.

Am I missing something? I am open to arguments from both sides.

Regards.

Nov 16 '05 #8
I wrote this last night... I dunno why it did not go thru...

Hi Frank,

It is normal to feel like that. The big advantage of using interfaces is
that they extend the use of polymorphism beyond the class hierarchy. They
are normally used to create small frameworks as well. Here are two examples:

- imagine you are responsible for writing an ATM application for a bank.
Thru your application you will allow users to Deposit, Withdraw and check
their Balance for Checking accounts and Savings Accounts. No matter what
kind of account your application handles, it needs to execute those tree
operations. You can sure derive Checking and Savings from an abstract
BankAccount that contain the necessary members. Now imagine that in the
future, your ATM application may also be used to access Credit Card accounts
and that the CreditCard class is not in the same inheritance hierarchy as
the BankAccounts. You still need to force it to have the Deposit, Withdraw
and Balance members. An interface is the perfect solution here.

- another real example. You are probably aware of the Sort method for the
Array class. It sorts data in a single dimension array. Remember that arrays
can be of any type: integers, strings, Animals, BankAccounts, etc. The Sort
method does not care about the data type. It access the underlying object
thru the IComparable interface. Therefore, to make your classes sortable,
you need to implement the IComparable interface. This has nothing to do with
inheritance.

I hope this helps a little bit.

Telmo Sampaio
MCT

"Frank Rizzo" <no**@none.com> wrote in message
news:ey**************@tk2msftngp13.phx.gbl...
We are having one of those religious debates at work: Interfaces vs
Classes. My take is that Classes give you more flexibility. You can
enforce a contract on the descendant classes by marking methods abstract
(which is all that an interface does). In addition, the classes allow you
to be flexible by adding functionality that child classes inherit. Or by
providing optional functionality via virtual methods.

Now, I understand that Interfaces have its place, but I am having a hard
time finding a situation where the classes (via inheritance) do not
provide an identical or better solution.

Am I missing something? I am open to arguments from both sides.

Regards.

Nov 16 '05 #9
Jeffrey Palermo, MCAD.Net wrote:
Frank,
I can't but wonder if you are the Frank Rizzo from all the Jerky Boys
albums. :)
Hey, there, sweet tits. No, I am not.
Anyway, I rule of thumb I like is to favor an Interface first. Then
that can define that portion of your API. Then if you have some common
functionality that you would like to be implemented in a base class,
the argument to use an abstract class is stronger. Under no condition
should you use an abstract class with only abstract members. That adds
no value beyond the interface implementation but puts an unneeded
restriction on its use.

Image if we didn't have an IDisposable interface but an abstract class
instead. To implement the pattern, we'd have to derive from that
class. Classes that already have a base would be stuck like chuck and
would not be able to implement the pattern.

Sometimes these arguments don't hit home until you've made an
implementation using inheritence and been personally hit with one of
these roadblocks. There's no replacement for experiences!
I get that. But, my rule has been what I learned in Intro to OOP 10
years ago. Interface is a "can-be", while Class is a "is-a". In my
case, one developer want to define an interface called, IDoThis and then
derive the class called CDoThis that implements IDoThis. To me, it
makes no sense whatsoever.

IDisposable makes sense because the class that implements it "can-be"
IDisposable. It is not "is-a" IDisposable. In fact, if you look at the
.NET framework, you won't find a single case of straight down
(IDoSomething, that's implemented by CDoSomething) encapsulation.


Best regards,
Jeffrey Palermo

Nov 16 '05 #10
Nick Malik [Microsoft] wrote:
Just to add to the excellent discussions here...

I, too, favor interfaces first, and then base classes. This is because of a
common issue with OO designs where it is tempting to create "tall trees" in
the heirarchy, each decendent specializing just one little bit of the
ancestor, until you end up with a tree that is five, six, even seven levels
deep. This becomes intensely difficult to debug, and a single defect in a
base class can make the entire structure frail.

Using Interfaces gives you the advantage of an enforced contract (you know),
multiple inheritance (as was pointed out by other posters) and also
discourages these tall trees.

Sometimes we need them. Don't get me wrong. There is no "one right answer"
to anything in OOP. But I find that it's a good idea to consider,
carefully, what it is I want to "abstract" in my class. The effort that I
expend trying to solve the problem with interfaces, first, helps me to do
that.


Thank you. One additional tid bit I'd like to know is relative speed.
In Java, abstract methods and classes are very fast. Interfaces require
extra indirection to find the corresponding method in the actual class.
Is this the case in .NET?

Nov 16 '05 #11
Frank,
You know your design best and will ultimately make the decision of
which one to go with. Regarding "In fact, if you look at the .NET
framework, you won't find a single case of straight down (IDoSomething,
that's implemented by CDoSomething) encapsulation. ", I looked and
found one quite easily.
http://msdn.microsoft.com/library/de...classtopic.asp
This is GenericPrincipal, which is what ASP.NET Page classes use for
the user object by default. The page class has the member "User",
which is IPrincipal so that I can create my own class _either_ by
inheriting from one of the bases they provide (which implement
IPrincipal) or creating my own custom class that implements IPrincipal
(which I favor).

If in your design, this pattern makes no sense, don't do it, but if the
interface/abstract class will be extended multiple times, binding to
the interface with a default implementation class will work and won't
hurt you in the future if you need to make an alternate implementation
in a class that may already have a base. If you only do the abstract
class, then you have put a restriction in place that the implementing
classes must use it as the base. You must decide if that is a
reasonable restriction. It might be.

Regarding performance differences between inheritence and interface
implementation, I don't know. I've never tested. Honestly, if I cared
about little performance differences like that, I'd probably favor
programming in assembly because I wouldn't tolerate the overall
slowness of .Net and the enormous memory consumption in relation to
Assembly (or even C++). With abstraction comes a performance hit. But
it is a trade-off between performance and maintainability. I'm not
sure if there is any performance difference, but if it concerns you,
please do a test and let us know the result.

Best regards,
Jeffrey Palermo
http://www.jeffreypalermo.com

Nov 16 '05 #12
Jeffrey Palermo, MCAD.Net wrote:
Regarding performance differences between inheritence and interface
implementation, I don't know. I've never tested. Honestly, if I cared
about little performance differences like that, I'd probably favor
programming in assembly because I wouldn't tolerate the overall
slowness of .Net and the enormous memory consumption in relation to
Assembly (or even C++). With abstraction comes a performance hit. But
it is a trade-off between performance and maintainability. I'm not
sure if there is any performance difference, but if it concerns you,
please do a test and let us know the result.

The reason I care about speed in this case is because it will be the
most used structure in the app being invoked continuously 24x7. So
while the performance hit on a single instantiation maybe negligable,
the effect on the overall operation maybe rather large. For instance,
processing 5 million transaction a day vs 4 million transactions a day
would be huge. That's why I care about speed.
Nov 16 '05 #13
Thanks, this was helpful. However, my design doesn't fall into this
category.

Telmo Sampaio wrote:
I wrote this last night... I dunno why it did not go thru...

Hi Frank,

It is normal to feel like that. The big advantage of using interfaces is
that they extend the use of polymorphism beyond the class hierarchy. They
are normally used to create small frameworks as well. Here are two examples:

- imagine you are responsible for writing an ATM application for a bank.
Thru your application you will allow users to Deposit, Withdraw and check
their Balance for Checking accounts and Savings Accounts. No matter what
kind of account your application handles, it needs to execute those tree
operations. You can sure derive Checking and Savings from an abstract
BankAccount that contain the necessary members. Now imagine that in the
future, your ATM application may also be used to access Credit Card accounts
and that the CreditCard class is not in the same inheritance hierarchy as
the BankAccounts. You still need to force it to have the Deposit, Withdraw
and Balance members. An interface is the perfect solution here.

- another real example. You are probably aware of the Sort method for the
Array class. It sorts data in a single dimension array. Remember that arrays
can be of any type: integers, strings, Animals, BankAccounts, etc. The Sort
method does not care about the data type. It access the underlying object
thru the IComparable interface. Therefore, to make your classes sortable,
you need to implement the IComparable interface. This has nothing to do with
inheritance.

I hope this helps a little bit.

Telmo Sampaio
MCT

"Frank Rizzo" <no**@none.com> wrote in message
news:ey**************@tk2msftngp13.phx.gbl...
We are having one of those religious debates at work: Interfaces vs
Classes. My take is that Classes give you more flexibility. You can
enforce a contract on the descendant classes by marking methods abstract
(which is all that an interface does). In addition, the classes allow you
to be flexible by adding functionality that child classes inherit. Or by
providing optional functionality via virtual methods.

Now, I understand that Interfaces have its place, but I am having a hard
time finding a situation where the classes (via inheritance) do not
provide an identical or better solution.

Am I missing something? I am open to arguments from both sides.

Regards.


Nov 16 '05 #14
Frank Rizzo <no**@none.com> wrote:
Regarding performance differences between inheritence and interface
implementation, I don't know. I've never tested. Honestly, if I cared
about little performance differences like that, I'd probably favor
programming in assembly because I wouldn't tolerate the overall
slowness of .Net and the enormous memory consumption in relation to
Assembly (or even C++). With abstraction comes a performance hit. But
it is a trade-off between performance and maintainability. I'm not
sure if there is any performance difference, but if it concerns you,
please do a test and let us know the result.


The reason I care about speed in this case is because it will be the
most used structure in the app being invoked continuously 24x7. So
while the performance hit on a single instantiation maybe negligable,
the effect on the overall operation maybe rather large. For instance,
processing 5 million transaction a day vs 4 million transactions a day
would be huge. That's why I care about speed.


And do you have any evidence to suggest that instantiation is the
bottleneck, and that the performance you get when coding it in the most
elegant and readable way isn't already good enough?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #15
Frank Rizzo wrote:
would be huge. That's why I care about speed.


Run a test, it is very dangerous to second-guess performance in
high-level languages. Even more so in runtime-dependant and jit-compiled
ones.

Besides, any other processing you do to these object will have to be
*very* simple indeed for the virtual-dispatch to take up much of the
processing time.

Remember, optimization cannot save more cpu-cycles than you spend
unoptimized, so do your optimization where lots of time is spent.

--
Helge
Nov 16 '05 #16
Jon Skeet [C# MVP] wrote:
And do you have any evidence to suggest that instantiation is the
bottleneck,
No, I don't have any evidence, since I don't have the structure just
yet. I am in the design stage. The reason that I brought it up is
because that's the case in Java: Interface require an additional level
of indirection. I do not know whether this is the case in .NET, but
given that it makes sense and the 2 frameworks are similar, I am worried
about it.
and that the performance you get when coding it in the most
elegant and readable way isn't already good enough?


I don't believe coding it the interface way is any readable or elegant.
Nov 16 '05 #17
Helge Jensen wrote:
Frank Rizzo wrote:
would be huge. That's why I care about speed.

Run a test, it is very dangerous to second-guess performance in
high-level languages. Even more so in runtime-dependant and jit-compiled
ones.
Besides, any other processing you do to these object will have to be
*very* simple indeed for the virtual-dispatch to take up much of the
processing time.
Remember, optimization cannot save more cpu-cycles than you spend
unoptimized, so do your optimization where lots of time is spent.


I agree. This is the place where most of the time would be spent.
Unfortunately, I can't run a test because I don't yet have anything: I
am in the design stage.

Nov 16 '05 #18
Well... Unfortunately I disagree with this rule. Realize that an
interface in C# is
conceptually equivalent to a pure virtual class in C++. Therefore an
interface
simply represents a abstract IS_A relationship. It "can be" or "looks
like", but it
still represents an IS_A relationship.

Regards,
Jeff
But, my rule has been what I learned in Intro to OOP 10
years ago. Interface is a "can-be", while Class is a "is-a".

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 16 '05 #19
Frank Rizzo <no**@none.com> wrote:
Jon Skeet [C# MVP] wrote:
And do you have any evidence to suggest that instantiation is the
bottleneck,


No, I don't have any evidence, since I don't have the structure just
yet. I am in the design stage. The reason that I brought it up is
because that's the case in Java: Interface require an additional level
of indirection. I do not know whether this is the case in .NET, but
given that it makes sense and the 2 frameworks are similar, I am worried
about it.


Yes, it requires an extra level of indirection. The time taken for that
indirection is almost certainly going to be insignificant for anything
other than the tightest loops.

Architectural performance (how many round-trips you need to make,
database locking etc) is going to be a *far* bigger factor in
performance than micro-optimisation like this.
> and that the performance you get when coding it in the most
> elegant and readable way isn't already good enough?


I don't believe coding it the interface way is any readable or elegant.


Ah, there we disagree. I believe that coding to an interface makes it
very clear what any one caller actually needs. A single class may
implement multiple interfaces to be used by multiple callers in
different ways - making each caller use just the interface makes it
easy to swap implementations, and to see what's using what.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #20
Further to this. If you want to create a common Plugin environment it
is nearly impossible to use Classes. Take the following example:
In the Framework model you create a common Plugin base class, then in
each Plugin project you want to use that class. Because of the C#
compiler, even though it is the same class [ from the same file etc...
], because it was compiled in two different projects, the CLR treats
the classes as different types. Hence you cannot cast between the 2
different projects. The only way to do this is to create a common
interface, and that is the same across the 2 different projects so you
can cast.

This is especially important if you want to do something like this:

iPluginFile = Activator.CreateInstance( _assemblyType ) as IPluginFile;


Rich.

su************@gmail.com wrote:
Lets say you wanted to make a Plugin architecture to your application
where 3rd party developers could develop components for your app to use at runtime. Would you be willing to give them the class or would you
rather just tell them about the interface? :-)
QED.


Nov 16 '05 #21
Frank Rizzo wrote:
I get that. But, my rule has been what I learned in Intro to OOP 10
years ago. Interface is a "can-be", while Class is a "is-a". In my
case, one developer want to define an interface called, IDoThis and then
derive the class called CDoThis that implements IDoThis. To me, it
makes no sense whatsoever.
I'm curious as to what the difference between a "can-be" and "is-a"
relation is?

I would expect a "can-be" relation to be somekind of possibility for
polymophism, which might or might not succeed. This is relevant in some
cases, for example conversion and coercion, but i haven't really seen
interfaces used to indicate possibilities, but rather certanties.

I keep feeling that maybe "can/must-do" is a better word for what you
are talking about?
IDisposable makes sense because the class that implements it "can-be"
IDisposable. It is not "is-a" IDisposable. In fact, if you look at the
.NET framework, you won't find a single case of straight down
(IDoSomething, that's implemented by CDoSomething) encapsulation.


A special kind of "is-a" relation is the "can/must-do", which is what
IDisposable is. It effectively says: "I can (and should be) disposed
using the protocol for that".

I cannot really understand why implementations of IDisposable aren't in
an is-a relationship with IDisposable, they exhibit the behaviour
specified in the IDisposable "contract".

The .NET-fw has very few hotspots, where you can plug in your own
behaviour. This (largely) removes the need for IFoo, DefaultFoo, since
you are simply required to use DefaultFoo. The one place where .NET
almost have this behaviour is IComparator, which has a system-default
(but it also has a non-casesensitive one for strings, so it's not quite
there).

The IFoo, DefaultFoo is useful where you anticipate multiple
implementations but wish to provide a default one. Generic algorithms
and data-structures are prime examples.

For example I have the following in a project:

interface ISpanningTree {
ICollection Nodes { get; }
object Parent(object node);
ICollection Children(object node);
}

With only one implementation for now:

public delegate double Measure(object nodeA, object nodeB);
public class DijkstraSpanningTree : ISpanningTree {
DijktraSpanningTree(IGraph graph, object root, Measure measure) {...};
...
}

But I don't want the code that just needs some spanning-tree to know
that it's actually a Dijkstra-generated tree.

The extra code introduced amounts to the declararion of the interface,
which is a small price to pay for the clarity of dependence.

--
Helge
Nov 16 '05 #22
Hi Helge,

I agree with most of what you said. I have one nit-picky objection though:
The .NET-fw has very few hotspots, where you can plug in your own
behaviour. This (largely) removes the need for IFoo, DefaultFoo, since you
are simply required to use DefaultFoo. The one place where .NET almost
have this behaviour is IComparator, which has a system-default (but it
also has a non-casesensitive one for strings, so it's not quite there).


The 1.1 Framework has dozens of places where you can plug in your own
behavior. There fact that it is a fairly complete system means that there's
not a lot of need to do that, but there are MANY opportunities to do so.
The 2.0 Framework increased this number substantially.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
Nov 16 '05 #23

Intresting thread.
I have little to contribute with that haven't already been said.
So I'll post a joke on interfaces instead.

I need a WebServer and so I'll build it like this:

interface IWebServer
{
void Start();
void Stop();
}

Done! All that's missing is the implementation.... =)

- Michael S
Nov 16 '05 #24
Hello Frank,
Thank you. One additional tid bit I'd like to know is relative speed. In
Java, abstract methods and classes are very fast. Interfaces require
extra indirection to find the corresponding method in the actual class. Is
this the case in .NET?

I haven't tested this. Since Abstract methods are implicitly Virtual
methods, and since the runtime will check the data type of the object
reference at run time when a virtual method is called, then it is safe to
assume that methods that are marked as abstract will incur a small run-time
performance hit by comparison to simply overriding a method in a class.
However, I'm speaking from conjecture. I have no evidence that there is any
performance hit at all, and it is quite possible that this part of the code
has been the focus of optimization efforts, thus reducing the chance you
will would be able to measure much difference at all.

That said, I strongly agree with the other responders: there are concerns
that are far more likely to slow you down than an in-memory type comparison.
Optimize where you spend the time. I would be very surprised if your
optimization of the inheritance tree would have ANY effect on the
performance of your application, especially if you make a single network,
hard disk, or database call in the inner loops of your logic.

To be honest, Frank, it sounds like you have convinced yourself, and no
amount of discussion on the merits of Interfaces will have any effect on you
one way or the other. I do not believe that your mind is open on this
topic.

If you would like to truly explore modern thinking in OO design, and not be
limited to what you learned 10 years ago, I encourage you to pick up a slim
volume called "Design Patterns Explained, 2nd Edition" by Shalloway and
Trott. This is an excellent examination of how to go from "is-a" and
"has-a" thinking to a richer and more meaningful understanding of what
objects can do for you.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Frank Rizzo" <no**@none.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl... Nick Malik [Microsoft] wrote:
Just to add to the excellent discussions here...

I, too, favor interfaces first, and then base classes. This is because
of a common issue with OO designs where it is tempting to create "tall
trees" in the heirarchy, each decendent specializing just one little bit
of the ancestor, until you end up with a tree that is five, six, even
seven levels deep. This becomes intensely difficult to debug, and a
single defect in a base class can make the entire structure frail.

Using Interfaces gives you the advantage of an enforced contract (you
know), multiple inheritance (as was pointed out by other posters) and
also discourages these tall trees.

Sometimes we need them. Don't get me wrong. There is no "one right
answer" to anything in OOP. But I find that it's a good idea to
consider, carefully, what it is I want to "abstract" in my class. The
effort that I expend trying to solve the problem with interfaces, first,
helps me to do that.

Nov 16 '05 #25
Jeff Louie wrote:
Well... Unfortunately I disagree with this rule. Realize that an
interface in C# is
conceptually equivalent to a pure virtual class in C++. Therefore an
interface
simply represents a abstract IS_A relationship. It "can be" or "looks
like", but it
still represents an IS_A relationship.
Well, there is a bit of difference. This of it in terms of nouns. What
is IDisposable? It is a Disposer (for the terms of our discussion).
For instance, BaseClass.ChildClass.GrandChildClass inherits from
BaseClass and Object, because it is that. However, just because it also
implements IDisposable, doesn't mean that GrandChildClass is a Disposer.
It isn't. It *CAN* Dispose, but it isn't a Disposer in itself.


Regards,
Jeff
But, my rule has been what I learned in Intro to OOP 10
years ago. Interface is a "can-be", while Class is a "is-a".

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 16 '05 #26
Jon Skeet [C# MVP] wrote:
Frank Rizzo <no**@none.com> wrote:
Jon Skeet [C# MVP] wrote:
And do you have any evidence to suggest that instantiation is the
bottleneck,
No, I don't have any evidence, since I don't have the structure just
yet. I am in the design stage. The reason that I brought it up is
because that's the case in Java: Interface require an additional level
of indirection. I do not know whether this is the case in .NET, but
given that it makes sense and the 2 frameworks are similar, I am worried
about it.

Yes, it requires an extra level of indirection. The time taken for that
indirection is almost certainly going to be insignificant for anything
other than the tightest loops.

Architectural performance (how many round-trips you need to make,
database locking etc) is going to be a *far* bigger factor in
performance than micro-optimisation like this.


I totally agree with that. Just wanted to get that piece of doubt out
of my hands. Btw, I did run some really simple (really simple) tests and
it seems that the speed is fairly comparable even in tight loops.

> and that the performance you get when coding it in the most
> elegant and readable way isn't already good enough?


I don't believe coding it the interface way is any readable or elegant.

Ah, there we disagree. I believe that coding to an interface makes it
very clear what any one caller actually needs. A single class may
implement multiple interfaces to be used by multiple callers in
different ways - making each caller use just the interface makes it
easy to swap implementations, and to see what's using what.


I guess, will just have to agree to disagree.
Nov 16 '05 #27
Nick Malik [Microsoft] wrote:
Hello Frank,

Thank you. One additional tid bit I'd like to know is relative speed. In
Java, abstract methods and classes are very fast. Interfaces require
extra indirection to find the corresponding method in the actual class. Is
this the case in .NET?
That said, I strongly agree with the other responders: there are concerns
that are far more likely to slow you down than an in-memory type comparison.
Optimize where you spend the time. I would be very surprised if your
optimization of the inheritance tree would have ANY effect on the
performance of your application, especially if you make a single network,
hard disk, or database call in the inner loops of your logic.


That is correct. I ran a couple of tests and they confirmed what other
people here were saying: the difference is very, very insignificant.
The reason I brought this up is that it was an issue in Java (at least
in the early years, haven't been keeping up).
To be honest, Frank, it sounds like you have convinced yourself, and no
amount of discussion on the merits of Interfaces will have any effect on you
one way or the other. I do not believe that your mind is open on this
topic.
No, actually, I do appreciate all the comments and do understand the
merits of interfaces. I'll have to evaluate them as it pertains to my
project.

If you would like to truly explore modern thinking in OO design, and not be
limited to what you learned 10 years ago, I encourage you to pick up a slim
volume called "Design Patterns Explained, 2nd Edition" by Shalloway and
Trott. This is an excellent examination of how to go from "is-a" and
"has-a" thinking to a richer and more meaningful understanding of what
objects can do for you.


Thanks, I'll check it out.
Nov 16 '05 #28
Frank Rizzo <no**@none.com> wrote:
That said, I strongly agree with the other responders: there are concerns
that are far more likely to slow you down than an in-memory type comparison.
Optimize where you spend the time. I would be very surprised if your
optimization of the inheritance tree would have ANY effect on the
performance of your application, especially if you make a single network,
hard disk, or database call in the inner loops of your logic.


That is correct. I ran a couple of tests and they confirmed what other
people here were saying: the difference is very, very insignificant.
The reason I brought this up is that it was an issue in Java (at least
in the early years, haven't been keeping up).


It's not an issue in Java either any more, as far as I know. In fact,
Hotspot may even inline interface implementations if only one class
implements the interface (as it can undo the optimisation when another
class implementing the interface is loaded). I don't know whether or
not it does this (it definitely does for virtual methods in classes) -
either way, I wouldn't consider it a reason for just using concrete
classes unless I got really desperate :)

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #29
Frank...

If a class derives from a base class that implements IDisposable or if
the class
implements IDisposable itself then the class IS_A Disposer. The
GrandChildClass _must not_ restrict the behavior of the base class. If
the
GrandChildClass is not a disposer then it violates the Liskov
Substitution
Principle.

Again, IMHO an interface in C# is the equivalent to a pure virtual
_class_ in
C++. A class in C++ can inherit from one or more pure virtual classes
(interfaces). If you believe that class inheritance represents an IS_A
relationship then you must agree that an interface represents a subset
of IS_A
relationships.

You must decide if you believe that class inheritance represents an IS_A
relationship. You must decide if you believe that interfaces are
equivalent to
pure virtual classes in C++. But if you believe in both statements, then
logically you can only come to the conclusion that interfaces represent
an
IS_A relationship.

CAN_BE, LIKE_A is a useful construct for designing frameworks using
multiple
inheritance.

IS_A inheritance
HAS_A containment
LIKE_A multiple inheritance

Regards,
Jeff
Well, there is a bit of difference. This of it in terms of nouns. What
is IDisposable? It is a Disposer (for the terms of our discussion).
For instance, BaseClass.ChildClass.GrandChildClass inherits from
BaseClass and Object, because it is that. However, just because it also
implements IDisposable, doesn't mean that GrandChildClass is a Disposer.
It isn't. It *CAN* Dispose, but it isn't a Disposer in itself.
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 16 '05 #30

"RichS" <ri****************@surfcontrol.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com...
Further to this. If you want to create a common Plugin environment it
is nearly impossible to use Classes. Take the following example:
In the Framework model you create a common Plugin base class, then in
each Plugin project you want to use that class. Because of the C#
compiler, even though it is the same class [ from the same file etc...
], because it was compiled in two different projects, the CLR treats
the classes as different types. Hence you cannot cast between the 2
different projects. The only way to do this is to create a common
interface, and that is the same across the 2 different projects so you
can cast.


That's not true. You can redirect all assembly references to use the current
version so that all references to a class refer to the current
implementation of the class, regardless of the version against whch the
original assembly was compiled.

Nov 16 '05 #31

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

Similar topics

17
by: Picho | last post by:
Hi all, I popped up this question a while ago, and I thought it was worth checking again now... (maybe something has changed or something will change). I read this book about component...
7
by: Ant | last post by:
Hi, I’m wondering what practical use is there for creating interfaces. I can fully appreciate creating an abstract class for the purpose of inheriting, but why an interface? Is it just to...
7
by: tshad | last post by:
I am trying to figure out when it is best to use Interfaces and when to use classes. The only reason I can figure out to use interface is if you need to implement multiple interfaces. The...
9
by: Sean Kirkpatrick | last post by:
To my eye, there doesn't seem to be a whole lot of difference between the two of them from a functional point of view. Can someone give me a good explanation of why one vs the other? Sean
6
by: s99999999s2003 | last post by:
hi i come from a non OO environment. now i am learning about classes. can i ask, in JAva, there are things like interface. eg public interface someinterface { public somemethod (); .... ... }...
8
by: Dave | last post by:
I have a set of developers who have gone off and implemented an interface for nearly all classes in a project\solution, now some of these classes will need interfaces as they implement the provider...
22
by: RSH | last post by:
Hi, I have been reading on interfaces working on samples I've run across on the web. For the life of me I cannot seem to grasp them. It appears to me that interfaces are simply blueprints to...
18
by: abcd | last post by:
Can someone tell me whats the exact advantage of Interfaces in C#. To me abstract classes serves the purpose and have all good things then what is special about interfaces...can someone tell me...
5
by: =?Utf-8?B?UmljaA==?= | last post by:
Greetings, I am actually a VB.Net guy, but I have worked somewhat with C++ and C#. I just want to ask about the relationship between Abstract Classes and Interfaces. My first question is if...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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.