Virtual functions and performance - C++(虚函数和性能 - C++)
问题描述
在我的类设计中,我广泛使用抽象类和虚函数.我有一种感觉,虚函数会影响性能.这是真的?但我认为这种性能差异并不明显,看起来我正在做过早的优化.对吗?
In my class design, I use abstract classes and virtual functions extensively. I had a feeling that virtual functions affects the performance. Is this true? But I think this performance difference is not noticeable and looks like I am doing premature optimization. Right?
推荐答案
一个好的经验法则是:
除非你能证明它,否则这不是性能问题.
It's not a performance problem until you can prove it.
使用虚函数会对性能产生非常轻微的影响,但不太可能影响应用程序的整体性能.寻找性能改进的更好的地方是算法和 I/O.
The use of virtual functions will have a very slight effect on performance, but it's unlikely to affect the overall performance of your application. Better places to look for performance improvements are in algorithms and I/O.
一篇关于虚函数(以及更多)的优秀文章是成员函数指针和最快的 C++ 委托.
An excellent article that talks about virtual functions (and more) is Member Function Pointers and the Fastest Possible C++ Delegates.
这篇关于虚函数和性能 - C++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:虚函数和性能 - C++
- 将 hdc 内容复制到位图 2022-09-04
- 哪个更快:if (bool) 或 if(int)? 2022-01-01
- 使用 __stdcall & 调用 DLLVS2013 中的 GetProcAddress() 2021-01-01
- 将函数的返回值分配给引用 C++? 2022-01-01
- DoEvents 等效于 C++? 2021-01-01
- XML Schema 到 C++ 类 2022-01-01
- 如何提取 __VA_ARGS__? 2022-01-01
- GDB 不显示函数名 2022-01-01
- OpenGL 对象的 RAII 包装器 2021-01-01
- 从父 CMakeLists.txt 覆盖 CMake 中的默认选项(...)值 2021-01-01