常用 C++ 优化技术列表

2021-12-20 00:00:00 gcc optimization c g++ c++

我可以列出一个很好的常用 C++ 优化实践列表吗?

Can I have a great list of common C++ optimization practices?

我所说的优化是指您必须修改源代码才能更快地运行程序,而不是更改编译器设置.

What I mean by optimization is that you have to modify the source code to be able to run a program faster, not changing the compiler settings.

推荐答案

编写更好程序的两种方法:

Two ways to write better programs:

充分利用语言

  1. Steve McConnell 完成的代码
  2. 有效的 C++
  3. 出色的 C++

配置您的应用程序

  1. 确定哪些代码区域占用了多少时间
  2. 看看是否可以使用更好的数据结构/算法来加快速度

没有多少特定于语言的优化可以做 - 它仅限于使用语言结构(从 #1 中学习).主要好处来自上面的#2.

There is not much language specific optimization one can do - it is limited to using language constructs (learn from #1). The main benefit comes from #2 above.

相关文章