虚函数和性能 - C++ [英] Virtual functions and performance - C++

查看:36
本文介绍了虚函数和性能 - 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++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆