OOP 中的动态绑定最佳方法
我有一些c++课程。具有一些基类和一些派生类的层次结构。 某些派生类中的某些方法为该特定派生类提供功能,而其他类不需要这些方法的任何实现。所以我把它们留作空的实现。 (所有这些函数都是虚拟的)
现在我的问题是,在程序中使用基类指针调用此类方法时,OOP 的最佳实践是什么。我的意思是首先检查基类指针中存储的引用类型,然后调用该方法或以任何方式调用该方法,就像在空的其他类中实现该特定方法一样。
I have some classes in c++. with some hierarchy of base class and some derived classes.
There are some methods in the some derived classes that does functionality for that particular derived class and the other classes do not need any implementation of those methods. So i left them as empty implementation. (All of these functions are virtual)
Now my question is that what are the best practices in OOP while calling such a method with base class pointer in your program. I mean first check the type of reference stored in the base class pointer and then call the method or call the method in any way as the implementation of that particular method in other classes in empty.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在C++中,运行时多态性是通过虚拟函数实现的。 更多信息
In C++, run-time polymorphism is achieved through virtual functions. More info