asp.net为什么没有多重继承(个人观点,欢迎指正,谢谢!)
摘要:
具我所知,面向对象规范里并没有反对在具体语言实现多重继承,这里的多重继承举例说:举个例子,交通工具类可以派生出汽车和船连个子类,但拥有汽车和船共同特性水陆两用汽车就必须继承来自汽车类与船类的共同属性。 如图所示:用C++的代码示例如下:#include<iostream> usingnamespacestd;classVehicle{public:Vehicle(intweight=0){Vehicle::weight=weight;}voidSetWeight(intweight){cout<<"重新设置重量"<<endl;Vehicl 阅读全文