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++ 遗留应用程序中
基础教程推荐
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07