vote up 21 vote down star
5

I have come across numerous arguments against the inclusion of multiple inheritance in C#, some of which include (philosophical arguments aside):

  • Multiple inheritance is too complicated and often ambiguous
  • It is unnecessary because interfaces provide something similar
  • Composition is a good substitute where interfaces are inappropriate

I come from a C++ background and miss the power and elegance of multiple inheritance. Although it is not suited to all software designs there are situations where it is difficult to deny it's utility over interfaces, composition and similar OO techniques.

Is the exclusion of multiple inheritance saying that developers are not smart enough to use them wisely and are incapable of addressing the complexities when they arise?

I personally would welcome the introduction of multiple inheritance into C# (perhaps C##).


Addendum: I would be interested to know from the responses who comes from a single (or procedural background) versus a multiple inheritance background. I have often found that developers who have no experience with multiple inheritance will often default to the multiple-inheritance-is-unnecessary argument simply because they do not have any experience with the paradigm.

flag
1  
C## - I like that ;) – Pete Sep 11 at 8:59

34 Answers

prev 1 2
vote up 4 vote down

I would argue against multiple inheritance simply for the reason you state. Developers will misuse it. I've seen enough problems with every class inheriting from a utility class, just so you can call a function from every class without needing to type so much, to know that multiple inheritance would lead to bad code in many situations. The same thing could be said about GoTo, which is one of the reasons it's use is so frowned upon. I think that multiple inheritance does have some good uses, just like GoTo, In an ideal world, where they were both only used when appropriately, there would be no problems. However, the world is not ideal, so we must protect bad programmers from themselves.

link|flag
1  
Crippling a langauge to keep developers safe isn't really a good design principle. That's a problem that Java has (nothing but classes and interfaces so it's easy to understand...). – Mark Cidade Oct 10 '08 at 22:03
1  
Read Stroustrup's book on Design and Evolution. He has an uncompromising stand on this: nothing will be kept out of the language just because it will be misused. He was aiming for the competent programmer (and, frankly, I don't want incompetents writing programs anyway). – David Thornley Oct 28 at 14:22
show 2 more comments
vote up 10 vote down

C# supports single inheritance, interfaces and extension methods. Between them, they provide just about everything that multiple inheritance provides, without the headaches that multiple inheritance brings.

link|flag
show 3 more comments
vote up 1 vote down

I think it would over-complicate things without providing enough ROI. We already see people butcher .NET code with too-deep inheritance trees. I can just imagine the atrocities if people had the power to do multiple inheritance.

I won't deny that it has potential, but I just don't see enough benefit.

link|flag
show 1 more comment
vote up 75 vote down

I've never missed it once, not ever. Yes, it [MI] gets complicated, and yes, interfaces do a similar job in many ways - but that isn't the biggest point: in the general sense, it simply isn't needed most of the time. Even single inheritance is overused in many cases.

link|flag
1  
Strictly speaking (and I am just paraphrasing Stroustrup here), that is true, and also it is true that single inheritance is not really needed. Furthermore, classes are not really needed either, right? It is not about "needed" but rather "nice to have" – Nemanja Trifunovic Oct 10 '08 at 14:58
3  
If you took objects away, I would miss them sorely; that is the distinction. Objects add massive value at minimal complexity. Multiple inheritance adds (arguably) minimal value at massive complexity. – Marc Gravell Oct 10 '08 at 15:00
2  
OK, let me re-phrase; from my blinkered viewpoint as a .NET developer, /working with objects/ is simple. I know I would fail with MI very quickly. But yes, point taken - object increase complexity. It is about complexity vs reward; objects have big benefits; MI has some benefit, but not enough IMO. – Marc Gravell Oct 10 '08 at 15:09
1  
MI is simple, but if you can't trust yourself not to create a massive tree-like hierarchy, then I think you shouldn't be programming at all. I think the C# designer just wanted to keep life easy for himself, MI is difficult for compilers. – gbjbaanb Oct 10 '08 at 15:22
1  
I haven't missed "stereotypical" multiple inheritance, but I have missed it in the way it's used in the Curiously Recurring Template Pattern (en.wikipedia.org/wiki/…). – Bradley Grainger Oct 24 '08 at 5:26
show 14 more comments
prev 1 2

Your Answer

Get an OpenID
or

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