Do unused functions get optimized out?(未使用的功能会得到优化吗?)
问题描述
一个相当简单的问题...如今的编译器倾向于进行大量优化.他们是否还会从最终输出中删除未使用的功能?
A fairly simple question... Compilers these days tend to do a significant amount of optimizations. Do they also remove unused functions from the final output?
推荐答案
这取决于编译器.Visual C++ 9 可以做到这一点 - 未使用的 static
函数在编译阶段被删除(甚至还有一个 C4505 警告),可以在链接阶段删除未使用的具有外部链接的函数 取决于链接器设置.
It depends on the compiler. Visual C++ 9 can do that - unused static
functions are removed at compilation phase (there's even a C4505 warning for that), unused functions with external linkage can be removed at link phase depending on linker settings.
这篇关于未使用的功能会得到优化吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:未使用的功能会得到优化吗?
- STL 中有 dereference_iterator 吗? 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- Stroustrup 的 Simple_window.h 2022-01-01
- 从python回调到c++的选项 2022-11-16
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- C++ 协变模板 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 静态初始化顺序失败 2022-01-01