本文介绍了为什么c#不允许多重继承?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




为什么一个还没有10年历史的编程语言不支持

多重继承?我有两个类,两个有很多字段和

方法,我需要从我的第三课,所以我试过:


class myClass3:myClass1,myClass2 {


并得到一个错误说我不能。 C#如何与C ++竞争如果

你甚至不能做出这么简单的事情?

有没有解决方法?


Patrick


***通过开发人员指南 ***

解决方案




多接口继承




Hi,

How come that a programming language not yet 10years old dosen''t support
Multiple inherritances?, I got 2 classes, both with alot of fields and
methods that i need from my third class, so i tried:

class myClass3 : myClass1, myClass2 {

and got an error says that i cant. How can C# be a compete with C++ if
you cant even make a simple thing like that?
Is there a work around?

Patrick

*** Sent via Developersdex http://www.developersdex.com ***

解决方案



Multiple Interface Inheritance





这篇关于为什么c#不允许多重继承?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 18:54