Why is multiple inheritance not supported in most of programming language?
I could really use this feature to develop different layout of application?
|
Why is multiple inheritance not supported in most of programming language? I could really use this feature to develop different layout of application? |
|||||||||||||
|
|
Multiple inheritance is useful in many situations as a developer, but it greatly increases the complexity of the language, which makes life harder for both the compiler developers and the programmers.
|
||||
|
|
|
One reason not to support it is ambiguity of method resolution. http://en.wikipedia.org/wiki/Diamond_problem However, I'm not sure what you mean by "most" programming languages. Many that are in use today support it directly (C++, Python, Perl, OCaml) or have a mechanism for similar functionality (Ruby and Scala come to mind). |
|||||
|