查找从未调用的函数

2022-01-05 00:00:00 qt4 visual-studio-2008 c++

我正在使用 Qt 和 Visual Studio 2008 在一个项目中进行一些重构,我想知道是否有一种简单的方法可以找到从未调用过的函数和方法?

I'm doing some refactoring in a project using Qt with Visual Studio 2008, and I'd like to know if there's a simple way to find the functions and methods that are never called?

推荐答案

你可以试试静态代码分析工具,比如 http://en.wikipedia.org/wiki/Cppcheck

You can try a static code analysis tool, like http://en.wikipedia.org/wiki/Cppcheck

相关文章