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++
基础教程推荐
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04