Finding quot;dead codequot; in a large C++ legacy application(查找“死代码在大型 C++ 遗留应用程序中)
问题描述
我目前正在开发一个大型的旧 C++ 应用程序,在我之前有很多开发人员.项目、类和函数中有很多死代码",不再被任何人使用.
I'm currently working on a large and old C++ application that has had many developers before me. There is a lot of "dead code" in the project, classes and functions that aren't used by anyone anymore.
有哪些工具可用于 C++ 分析大型代码库以检测和重构死代码?注意:我不是在谈论像 gcov 这样的测试覆盖率工具.
What tools are available for C++ to make a analysis of large code base to detect and refactor dead code? Note: I'm not talking about test coverage tool like gcov.
你如何在你的项目中找到死代码?
How do you find dead code in your project?
推荐答案
您需要使用静态分析工具
- StackOverflow:有哪些开源 C++ 静态分析工具可用?
- 维基百科:静态代码分析工具列表
我遇到的主要问题是,您必须小心不要从您无法控制/拥有的地方使用任何库.如果您从一个通过引用项目中的库而被使用的类中删除一个函数,您可能会破坏一些您不知道使用该代码的东西.
The main gotcha I've run into is that you have to be careful that any libraries aren't used from somewhere that you don't control/have. If you delete a function from a class that gets used by referencing a library in your project you can break something that you didn't know used the code.
这篇关于查找“死代码"在大型 C++ 遗留应用程序中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:查找“死代码"在大型 C++ 遗留应用程序中
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 静态初始化顺序失败 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- C++ 协变模板 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 从python回调到c++的选项 2022-11-16
- Stroustrup 的 Simple_window.h 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07