C++ 中的多重继承
如您所知,C++ 允许多重继承
。但是,使用多重继承是一种好的编程方法还是应该避免呢?
谢谢。
As you know, C++ allows multiple inheritance
. But, would it be a good programming approach to use multiple inheritance or it should be avoided?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,它是不需要的,并且会使您的代码更加复杂。
但在某些情况下它是有用的。只要它有用并且不会导致您的代码变得难以管理,我认为没有理由避免它。
In general, it's not needed and can make your code more complex.
But there are cases where it's useful. As long as it's useful and isn't causing your code to become unmanageable, I see no reason to avoid it.