Should C# include multiple inheritance? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:47:12Z http://stackoverflow.com/feeds/question/191691 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance 21 Should C# include multiple inheritance? Richard Dorman 2008-10-10T14:49:58Z 2009-11-16T14:20:55Z <p>I have come across numerous arguments against the inclusion of multiple inheritance in C#, some of which include (philosophical arguments aside):</p> <ul> <li>Multiple inheritance is too complicated and often ambiguous</li> <li>It is unnecessary because interfaces provide something similar</li> <li>Composition is a good substitute where interfaces are inappropriate</li> </ul> <p>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.</p> <p>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?</p> <p>I personally would welcome the introduction of multiple inheritance into C# (perhaps C##).</p> <p><hr /></p> <p><strong>Addendum</strong>: 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.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191693#191693 76 Answer by Marc Gravell for Should C# include multiple inheritance? Marc Gravell 2008-10-10T14:50:51Z 2008-10-10T15:03:44Z <p>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.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191717#191717 1 Answer by Bob King for Should C# include multiple inheritance? Bob King 2008-10-10T14:55:05Z 2008-10-10T14:55:05Z <p>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.</p> <p>I won't deny that it has potential, but I just don't see enough benefit.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191718#191718 10 Answer by David Arno for Should C# include multiple inheritance? David Arno 2008-10-10T14:55:11Z 2008-10-10T14:55:11Z <p>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.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191720#191720 4 Answer by Kibbee for Should C# include multiple inheritance? Kibbee 2008-10-10T14:55:29Z 2008-10-10T14:55:29Z <p>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.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191730#191730 1 Answer by Dana for Should C# include multiple inheritance? Dana 2008-10-10T14:56:59Z 2008-10-10T14:56:59Z <p>While there are certainly instances where it can be useful, I have found that most of the time when I think I need it, I really don't.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191735#191735 3 Answer by Scott Dorman for Should C# include multiple inheritance? Scott Dorman 2008-10-10T14:58:53Z 2008-10-10T14:58:53Z <p>I have been working with C# since it was first available as an alpha/beta release and have never missed multiple inheritance. MI is nice for some things but there are almost always other ways to achieve the same result (some of which actually end up being simpler or creating an easier to understand implementation).</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191738#191738 23 Answer by chris for Should C# include multiple inheritance? chris 2008-10-10T15:00:16Z 2009-11-16T14:20:55Z <p>Prefer aggregation over inheritance!</p> <pre><code>class foo : bar, baz </code></pre> <p>is often better handled with</p> <pre><code>class foo : Ibarrable, Ibazzable { ... public Bar TheBar{ set } public Baz TheBaz{ set } public void BarFunction() { TheBar.doSomething(); } public Thing BazFunction( object param ) { return TheBaz.doSomethingComplex(param); } } </code></pre> <p>This way you can swap in and out different implementations of IBarrable and IBazzable to create multiple versions of the App without having to write yet another class.</p> <p>Dependency injection can help with this a lot.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191741#191741 1 Answer by Nemanja Trifunovic for Should C# include multiple inheritance? Nemanja Trifunovic 2008-10-10T15:01:20Z 2008-10-10T15:01:20Z <p>Multiple inheritance in general can be useful and many OO languages implement it one way or another (C++, Eiffel, CLOS, Python...). Is it essential? No. Is it nice to have? Yes.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191763#191763 0 Answer by Mecki for Should C# include multiple inheritance? Mecki 2008-10-10T15:06:29Z 2008-10-10T15:52:24Z <p><strong>Update</strong><br> I challenge everyone who votes me down to show me any example of multiple inheritance that I can't easily port to a language with single inheritance. Unless anyone can show any such sample, I claim it does not exist. I have ported tons of C++ code (MH) to Java (no-MH) and that was never a problem, no matter how much MH the C++ code used.</p> <p><hr /></p> <p>Nobody could ever prove so far that multiple inheritance has <a href="http://en.wikipedia.org/wiki/Multiple_inheritance#Criticisms" rel="nofollow">any advantage</a> over other techniques you mentioned in your post (using interfaces and delegates I can get exactly the same result without much code or overhead), while it has a couple of well known disadvantages (<a href="http://en.wikipedia.org/wiki/Diamond_problem" rel="nofollow">diamond problem</a> being the most annoying ones).</p> <p>Actually multiple inheritance is usually abused. If you use OO design to somehow model the real world into classes, you will never get to the point where multiple inheritance makes actually sense. Can you provide a useful example for multiple inheritance? Most of the examples I've seen so far are actually "wrong". They make something a subclass, that is in fact just an extra property and thus actually an interface.</p> <p>Take a look at <a href="http://www.icsi.berkeley.edu/~sather/" rel="nofollow">Sather</a>. It is a programming language, where interfaces do have multiple inheritance, as why not (it can't create a diamond problem), however classes that are no interfaces have no inheritance whatsoever. They can only implement interfaces and they can "include" other objects, which makes these other objects a fixed part of them, but that is not the same as inheritance, it's rather a form of delegation (method calls "inherited" by including objects are in fact just forwarded to instances of these objects encapsulated in your object). I think this concept is pretty interesting and it shows you can have a complete clean OO language without any implementation inheritance at all.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191843#191843 0 Answer by Lou Franco for Should C# include multiple inheritance? Lou Franco 2008-10-10T15:22:21Z 2008-10-10T15:22:21Z <p>A colleague wrote this blog about how to get something like multiple inheritance in C# with Dynamic Compilation:</p> <p><a href="http://www.atalasoft.com/cs/blogs/stevehawley/archive/2008/09/29/late-binding-in-c-using-dynamic-compilation.aspx" rel="nofollow">http://www.atalasoft.com/cs/blogs/stevehawley/archive/2008/09/29/late-binding-in-c-using-dynamic-compilation.aspx</a></p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191859#191859 0 Answer by CrashCodes for Should C# include multiple inheritance? CrashCodes 2008-10-10T15:25:48Z 2008-10-14T17:07:42Z <p><strong>No.</strong></p> <p>(for voting)</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191893#191893 0 Answer by gbjbaanb for Should C# include multiple inheritance? gbjbaanb 2008-10-10T15:32:02Z 2008-10-10T15:32:02Z <p>I think its simple really. Just like any other complex programming paradigm, you can misuse it and hurt yourself. Can you misuse objects (oh yes!), but that doesn't mean OO is bad in itself.</p> <p>Similarly with MI. If you do not have a large 'tree' of inherited classes, or a lot of classes that provide the same named methods, then you will be perfectly fine with MI. In fact, as MI provides the implementation, you'll often be better off than a SI implementation where you have to re-code, or cut&amp;paste methods to delegated objects. Less code is better in these cases.. you can make an almighty mess of sharing code by trying to re-use objects through interface inheritance. And such workarounds don't smell right.</p> <p>I think the single-inheritance model of .NET is flawed: they should have gone with interfaces only, or MI only. Having "half and half" (ie single implementation inheritance plus multiple interface inheritance) is more confusing than it should be, and not elegant at all.</p> <p>I come from a MI background, and I'm not scared of or burnt by it.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191895#191895 0 Answer by Flory for Should C# include multiple inheritance? Flory 2008-10-10T15:32:13Z 2008-10-10T15:32:13Z <p>I have posted this here a couple of times but I just think it is really cool. You can learn how to fake MI <a href="http://www.codeproject.com/KB/architecture/smip.aspx" rel="nofollow">here</a>. I also think the article highlights why MI is such a pain even if that was not intended.</p> <p>I neither miss it or need it, I prefer to use composition of objects to achieve my ends. That is really the point of the article as well.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191900#191900 -3 Answer by sep332 for Should C# include multiple inheritance? sep332 2008-10-10T15:33:15Z 2008-10-17T19:27:46Z <p><strong>Yes.</strong></p> <p>(for voting)</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191909#191909 7 Answer by Lou Franco for Should C# include multiple inheritance? Lou Franco 2008-10-10T15:34:48Z 2008-10-10T15:34:48Z <p>Here is a very useful case for multiple inheritance that I run into all of the time. </p> <p>As a toolkit vendor, I cannot change published API's or I will break backwards compatibility. One thing that results from that is that I cannot ever add to an interface once I have released it because it would break compilation for anyone implementing it -- the only option is to extend the interface. </p> <p>This is fine for existing customers, but new ones would see this hierarchy as needlessly complex, and if I were designing it from the beginning, I would not opt to implement it this way -- I have to, or else I will lose backwards compatibility. If the interface is internal, then I just add to it and fix the implementors.</p> <p>In many cases, the new method to the interface has an obvious and small default implementation, but I cannot provide it.</p> <p>I would prefer to use abstract classes and then when I have to add a method, add a virtual one with a default implementation, and sometimes we do this.</p> <p>The issue, of course, is if this class would likely be mixed in to something that is already extending something -- then we have no choice but to use an interface and deal with extension interfaces.</p> <p>If we think we have this problem in a big way, we opt for a rich event model instead -- which I think is probably the right answer in C#, but not every problem is solved this way -- sometimes you want a simple public interface, and a richer one for extenders.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191968#191968 0 Answer by Nick for Should C# include multiple inheritance? Nick 2008-10-10T15:48:06Z 2008-10-10T15:48:06Z <p>I've used multiple inheritence in C++ myself too, but you really have to know what you're doing in order to not get yourself in trouble, especially if you have two base classes which share a grandparent. Then you can get into issues with virtual inheritence, having to declare every constructor you're going to call down the chain (which makes binary reuse much harder)... it <em>can</em> be a mess.</p> <p>More importantly, the way the CLI is currently built precludes MI from being implemented <em>easily</em>. I'm sure they could do it if they wanted, but I have other things I'd rather see in the CLI than multiple inheritence.</p> <p>Things I'd like to see include some features of <a href="http://research.microsoft.com/SpecSharp/" rel="nofollow">Spec#</a>, like non-nullable reference types. I'd also like to see more object safety by being able to declare parameters as const, and the ability to declare a function const (meaning that you are guaranteeing that the internal state of an object won't be changed by the method and the compiler double checks you).</p> <p>I think that between Single Inheritence, Multiple Interface Inheritence, Generics, and Extension Methods, you can do pretty much anything you need to. If anything could improve things for someone desiring MI, I think some sort of language construct which would would allow easier aggregation and composition is needed. That way you can have a shared interface, but then delegate your implementation to a private instance of the class you would normally inherit from. Right now, that takes a lot of boiler plate code to do. Having a more automated language feature for that would help significantly.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/192179#192179 2 Answer by Qwertie for Should C# include multiple inheritance? Qwertie 2008-10-10T16:35:50Z 2008-10-10T16:53:00Z <p>Multiple inheritance isn't supported by the CLR in any way I'm aware of, so I doubt it could be supported in an efficient way as it is in C++ (or Eiffel, which may do it better given that the language is specifically designed for MI).</p> <p>A nice alternative to Multiple Inheritance is called Traits. It allows you to mix together various units of behavior into a single class. A compiler can support traits as a compile-time extension to the single-inheritance type system. You simply declare that class X includes traits A, B, and C, and the compiler puts the traits you ask for together to form the implementation of X.</p> <p>For example, suppose you are trying to implement IList(of T). If you look at different implementations of IList(of T), they often share some of the exact same code. That's were traits come in. You just declare a trait with the common code in it and you can use that common code in any implementation of IList(of T) -- even if the implementation already has some other base class. Here's what the syntax might look like:</p> <pre><code>/// This trait declares default methods of IList&lt;T&gt; public trait DefaultListMethods&lt;T&gt; : IList&lt;T&gt; { // Methods without bodies must be implemented by another // trait or by the class public void Insert(int index, T item); public void RemoveAt(int index); public T this[int index] { get; set; } public int Count { get; } public int IndexOf(T item) { EqualityComparer&lt;T&gt; comparer = EqualityComparer&lt;T&gt;.Default; for (int i = 0; i &lt; Count; i++) if (comparer.Equals(this[i], item)) return i; return -1; } public void Add(T item) { Insert(Count, item); } public void Clear() { // Note: the class would be allowed to override the trait // with a better implementation, or select an // implementation from a different trait. for (int i = Count - 1; i &gt;= 0; i--) RemoveAt(i); } public bool Contains(T item) { return IndexOf(item) != -1; } public void CopyTo(T[] array, int arrayIndex) { foreach (T item in this) array[arrayIndex++] = item; } public bool IsReadOnly { get { return false; } } public bool Remove(T item) { int i = IndexOf(item); if (i == -1) return false; RemoveAt(i); return true; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return GetEnumerator(); } IEnumerator&lt;T&gt; GetEnumerator() { for (int i = 0; i &lt; Count; i++) yield return this[i]; } } </code></pre> <p>And you use the trait like this:</p> <pre><code>class MyList&lt;T&gt; : MyBaseClass, DefaultListMethods&lt;T&gt; { public void Insert(int index, T item) { ... } public void RemoveAt(int index) { ... } public T this[int index] { get { ... } set { ... } } public int Count { get { ... } } } </code></pre> <p>Of course, I'm just scratching the surface here. For a more complete description, see the paper <a href="http://www.iam.unibe.ch/~scg/Archive/Papers/Scha03aTraits.pdf" rel="nofollow">Traits: Composable Units of Behavior</a> (PDF).</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/192396#192396 11 Answer by Mark Cidade for Should C# include multiple inheritance? Mark Cidade 2008-10-10T17:36:27Z 2008-10-11T17:51:19Z <p>One of the issues with dealing with multiple inheritance is the distinction between interface inheritance and implementation inheritence.</p> <p>C# already has a clean implementation of interface inheritence (including choice of implicit or explicit implementations) by using pure interfaces. </p> <p>If you look at C++, the kind of inheritence you get from each class you specify after the colon in the <code>class</code> declaration is determined by the access modifier (<code>private</code>, <code>protected</code>, or <code>public</code>). With <code>public</code> inheritence, you get the full messiness of multiple inheritence--multiple interfaces are mixed with multiple implementations. With <code>private</code> inheritance, you just get implementation. An object of "<code>class Foo : private Bar</code>" can never get passed to a function that expects a <code>Bar</code> because it's as if the <code>Foo</code> class really just has a private <code>Bar</code> field and automatically-implemented <a href="http://en.wikipedia.org/wiki/Delegation_pattern" rel="nofollow" title="Wikipedia: Delegation Pattern"><em>delegation</em> pattern</a>. </p> <p>Pure multiple implementation inheritance (which is really just automatic delegation) doesn't present any problems and would be awesome to have in C#.</p> <p>As for multiple interface inheritence from classes, there are many different possible designs for implementing the feature. Every language that has multiple inheritence has its own rules as to what happens when a method is called with the same name in multiple base classes. Some languages, like Common Lisp (particularly the CLOS object system), and Python, have a meta-object protocol where you can specify the base class precedence.</p> <p>Here's one possibility:</p> <pre><code> abstract class Gun { public void Shoot(object target) {} public void Shoot() {} public abstract void Reload(); public void Cock() { Console.Write("Gun cocked."); } } class Camera { public void Shoot(object subject) {} public virtual void Reload() {} public virtual void Focus() {} } //this is great for taking pictures of targets! class PhotoPistol : Gun, Camera { public override void Reload() { Console.Write("Gun reloaded."); } public override void Camera.Reload() { Console.Write("Camera reloaded."); } public override void Focus() {} } var pp = new PhotoPistol(); Gun gun = pp; Camera camera = pp; pp.Shoot(); //Gun.Shoot() pp.Reload(); //writes "Gun reloaded" camera.Reload(); //writes "Camera reloaded" pp.Cock(); //writes "Gun cocked." camera.Cock(); //error: Camera.Cock() not found ((PhotoPistol) camera).Cock(); //writes "Gun cocked." camera.Shoot(); //error: Camera.Shoot() not found ((PhotoPistol) camera).Shoot();//Gun.Shoot() pp.Shoot(target); //Gun.Shoot(target) camera.Shoot(target); //Camera.Shoot(target) </code></pre> <p>In this case, only the first listed class's implementation is implicitly inherited in the case of a conflict. The class for other base types must be explicitly specified to get at their implementations. To make it more idiot-proof the compiler can disallow implicit inheritence in the case of a conflict (conflicting methods would always require a cast). </p> <p>Also, you can implement multiple inheritence in C# today with implicit conversion operators:</p> <pre><code> public class PhotoPistol : Gun /* ,Camera */ { PhotoPistolCamera camera; public PhotoPistol() {camera = new PhotoPistolCamera();} public void Focus() { camera.Focus(); } class PhotoPistolCamera : Camera { public override Focus() { }} public static Camera implicit operator(PhotoPistol p) { return p.camera; } } </code></pre> <p>It's not perfect, though, as it's not supported by the <strong><code>is</code></strong> and <strong><code>as</code></strong> operators, and <code>System.Type.IsSubClassOf()</code>.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/193251#193251 0 Answer by K Man for Should C# include multiple inheritance? K Man 2008-10-10T22:35:34Z 2008-10-10T22:35:34Z <p>No, We came away from it. You do u need it now</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/193303#193303 0 Answer by Paul Nathan for Should C# include multiple inheritance? Paul Nathan 2008-10-10T23:08:36Z 2008-10-10T23:08:36Z <p>I prefer C++. I've used Java, C#, etc. As my programs get more sophisticated in such an OO environment, I find myself missing Multiple Inheritance. That's my subjective experience.</p> <p>It can make for amazing spaghetti code...it can make for amazingly elegant code.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/193321#193321 -2 Answer by akramnik for Should C# include multiple inheritance? akramnik 2008-10-10T23:16:52Z 2008-10-10T23:16:52Z <p>Interfaces are multiple inheritance. As a matter of fact, I would consider Java/C# type interfaces the "proper" implementation of multiple inheritance. Forcing multiple inheritance through the use of interfaces, rather then allowing inheritance from multiple concrete or abstract classes forces the developer to use composition/delegation for code reuse. Inheritance should never be used for code reuse and the absence of C++ type multiple inheritance forces developers to come up with better designed classes.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/271410#271410 1 Answer by Jay Bazuzi for Should C# include multiple inheritance? Jay Bazuzi 2008-11-07T06:59:37Z 2008-11-07T06:59:37Z <p>I'm happy that C# does not have Multiple Inheritance, even though it would sometimes be convenient. What I would like to see instead is the ability to provide a default implementation of an interface method. That is:</p> <pre><code>interface I { void F(); void G(); } class DefaultI : I { void F() { ... } void G() { ... } } class C : I = DefaultI { public void F() { ... } // implements I.F } </code></pre> <p>In this case, <code>((I)new C()).F()</code> will call <code>C</code>'s implementation of <code>I.F()</code>, while <code>((I)new C()).G()</code> will call <code>DefaultI</code>'s implementation of <code>I.G()</code>.</p> <p>There are a number of issues that the language designers would have to work out before this could be added to the language, but none that are very hard, and the result would cover many of the needs that make Multiple Inheritance desirable.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/290553#290553 0 Answer by Steven A. Lowe for Should C# include multiple inheritance? Steven A. Lowe 2008-11-14T16:00:36Z 2008-11-14T16:00:36Z <p>one of the truly nice and (at the time) novel things about the DataFlex 4GL v3+ (I know, I know, Data <em>what</em>?) was its support for <strong>mixin</strong> inheritance - the methods from any other classes could be reused in your class; as long as your class provided the properties that these methods used, it worked just fine, and there was no "diamond problem" or other multiple-inheritance "gotchas" to worry about.</p> <p>i would like to see something like this in C# as it would simplify certain kinds of abstraction and contruction issues</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/315901#315901 0 Answer by Brian Genisio for Should C# include multiple inheritance? Brian Genisio 2008-11-24T23:45:55Z 2008-11-24T23:45:55Z <p>I actually miss multiple inheritance for one specific reason... the dispose pattern. </p> <p>EVERY time that I need to implement the dispose pattern, I say to myself: "I wish I could just derive from a class that implements the dispose pattern with a few virtual overrides." I copy and paste the same boiler-plate code into every class that implements IDispose and I hate it.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/315978#315978 0 Answer by Signal9 for Should C# include multiple inheritance? Signal9 2008-11-25T00:26:14Z 2008-11-25T00:26:14Z <p>I believe languages like C# should give the programmer the option. Just because it <em>maybe</em> too complicated does not mean it <em>will be</em> too complicated. Programming languages should provide the developer with tools to build anything the programmer wants to. </p> <p>You choose to use those API's a developer already wrote, you dont have too.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/316006#316006 1 Answer by Thomas Hansen for Should C# include multiple inheritance? Thomas Hansen 2008-11-25T00:38:35Z 2008-11-25T00:38:35Z <p>YES! YES! and YES!</p> <p>Seriously, I've been developing GUI libraries my entire career, and MI (Multiple Inheritance) makes this FAR easier than SI (Single Inheritance)</p> <p>First I did <a href="http://smartwinlib.org" rel="nofollow">SmartWin++</a> in C++ (MI heavily used) then I did Gaia Ajax and finally now <a href="http://ra-ajax.org" rel="nofollow">Ra-Ajax</a> and I can with extreme confident state that MI rules for some places. One of those places being GUI libraries...</p> <p>And the arguments claiming that MI "is too complex" and such are mostly put there by people trying to construct language wars and happens to belong to the camp which "currently doesn't have MI"...</p> <p>Just like functional programming languages (like Lisp) have been taught (by the "non-Lispers") as "too complex" by non-functional programming language advocates...</p> <p>People are afraid of the unknown...</p> <p>MI RULES!</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/362849#362849 0 Answer by Apocalisp for Should C# include multiple inheritance? Apocalisp 2008-12-12T14:07:42Z 2008-12-12T14:07:42Z <p>Give C# <a href="http://blog.tmorris.net/implicits-for-the-fearless/" rel="nofollow">implicits</a> and you will not miss multiple inheritance, or any inheritance for that matter.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/362854#362854 0 Answer by Daok for Should C# include multiple inheritance? Daok 2008-12-12T14:09:44Z 2008-12-12T14:09:44Z <p>No I do not. I use all other OO features to develop what I want. I use Interface and object encapsulation and I am never limited on what I want to do.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/362857#362857 0 Answer by Pokus for Should C# include multiple inheritance? Pokus 2008-12-12T14:10:28Z 2008-12-12T14:10:28Z <p>I try not to use inheritance. The less I can everytime.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/362865#362865 0 Answer by theman_on_vista for Should C# include multiple inheritance? theman_on_vista 2008-12-12T14:13:39Z 2008-12-12T14:13:39Z <p>c# does include multiple inheritance. its called c++. </p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/362877#362877 1 Answer by Mauricio Scheffer for Should C# include multiple inheritance? Mauricio Scheffer 2008-12-12T14:17:00Z 2008-12-12T14:17:00Z <p>Instead of multiple inheritance, you can use <a href="http://stackoverflow.com/questions/255553/is-it-possible-to-implement-mixins-in-c">mixins</a> which is a better solution.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/925618#925618 0 Answer by S M Kamran for Should C# include multiple inheritance? S M Kamran 2009-05-29T11:42:28Z 2009-05-29T11:42:28Z <p>If we introduce Multiple Inheritance then we are again facing the old Diamond problem of C++...</p> <p>However for those who think it's unavoidable we can still introduce multiple inheritance effects by means of composition (Compose multiple objects in an object and expose public methods which delegate responsibilities to composed object and return)... </p> <p>So why bother to have multiple inheritance and make your code vulnerable to unavoidable exceptions...</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/1409812#1409812 0 Answer by Pete for Should C# include multiple inheritance? Pete 2009-09-11T08:56:43Z 2009-09-11T08:56:43Z <p>I almost don't miss multiple inheritance in C#.</p> <p>If you are using multiple inhertance to define an actual domain model, then in my experience, you can often create an equally good design using single inheritance and some good design patterns.</p> <p>Most of the places where I find multiple inheritance to be of real value are the places where it is not the domain itself, but some technology/framework constraint that requires you to use MI. Implementation of COM objects using ATL is a very good example of where you use multiple inheritance to implement all the necessary interfaces that you COM object needs, and an elegant solution to an ugly (compared to .NET) technology. Elegant from the point of view that it is a C++ framework!</p> <p>I have a problem now though, where I could use multiple inheritance. I have one class that needs to derive features from some other domain object, but it also needs to be accessible for cross-AppDomain calls. This means that it MUST inherit from MarshalByRefObject. So in this particular case, I would really like to derive both from MarshalByRefObject and my specific domain object. That is not possible however, so my class has to implement the same interface as my domain object, and forward calls to an aggregated instance.</p> <p>But this is, as I said, a case where the technology/framework places a constraint, and not the domain model itself.</p> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/1546387#1546387 0 Answer by Phil for Should C# include multiple inheritance? Phil 2009-10-09T22:35:51Z 2009-10-09T22:42:00Z <p>I say no until the Diamond Problem (a big reason why multiple inheritence with classes is bad) is solved adequately and if the solution is as good as using interfaces. In a nutshell, the Diamond Problem basically has to do with potential ambiguity in data, method and events in classes due to multiple inheritence via classes. </p> <p>P/S You "rarely" avoid a programming solution you badly need just because it is hard. "Difficulty" is no excuse for not having multiple inheritence. Multithreading is hard yet it is available in C#. A big for not having multiple inheritence is due to diamond problem (<a href="http://en.wikipedia.org/wiki/Diamond%5Fproblem" rel="nofollow">http://en.wikipedia.org/wiki/Diamond%5Fproblem</a>). A smiliar reasoning apply to your comment about better alternatives (people solve and think in different ways so sometimes one solution is a bad idea) and suitable options already exist (why create LINQ when ADO.NET does the trick and is mature...due to the strength of one over the other.)</p>