OOP 中的动态绑定最佳方法

发布于 2024-11-09 02:00:34 字数 211 浏览 0 评论 0原文

我有一些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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

各空 2024-11-16 02:00:34

在C++中,运行时多态性是通过虚拟函数实现的。 更多信息

In C++, run-time polymorphism is achieved through virtual functions. More info

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文