|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
3 | added 1 characters in body | ||
|
One of the issues with dealing with multiple inheritance is the distinction between interface inheritance and implementation inheritence. C# already has a clean implementation of interface inheritence (including choice of implicit or explicit implementations) by using pure interfaces. If you look at C++, the kind of inheritence you get from each class you specify after the colon in the Pure multiple implementation inheritance (which is really just automatic delegation) doesn't present any problems and would be awesome to have in C#. 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. Here's one possibility:
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). Also, you can implement multiple inheritence in C# today with implicit conversion operators:
It's not perfect, though, as it's not supported by the |
||||
|
2 | deleted 8 characters in body | ||
|
One of the issues with dealing with multiple inheritance is the distinction between interface inheritance and implementation inheritence. C# already has a clean implementation of interface inheritence (including choice of implicit or explicit implementations) by using pure interfaces. If you look at C++, the kind of inheritence you get from each class you specify after the colon in the Pure multiple implementation inheritance (which is really just automatic delegation) doesn't present any problems and would be awesome to have in C#. 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. Here's one possibility:
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). Also, you can implement multiple inheritence in C# today with implicit conversion operators:
It's not perfect, though, as it's not supported by the |
||||
|
1 |
|
||
