Profiling in Visual Studio 2008 PRO(在 Visual Studio 2008 PRO 中进行分析)
问题描述
如何在 Visual Studio 2008 中使用探查器?
How do I use the profiler in Visual Studio 2008?
我知道在配置属性 -> 链接器 -> 高级 -> 配置文件 (/PROFILE) 中有一个构建选项,但是我找不到任何关于实际使用它的信息,只有我能找到的文章似乎只适用于旧版本的 Visual Studio(例如大多数人说要转到 Build->Profile 以打开配置文件对话框,但在 2008 年没有这样的菜单项).
I know theres a build option in Config Properties -> Linker -> Advanced -> Profile (/PROFILE), however I can't find anything about actauly using it, only articles I was able to find appear to only apply to older versions of Visual Studio (eg most say to goto Build->Profile to bring up the profile dialog box, yet in 2008 there is no such menu item).
这是因为 Visual Studio 2008 不包含分析器吗?如果包含,它在哪里以及它的文档在哪里?
Is this because Visual Studio 2008 does not include a profiler, and if it does where is it and where is the documentation for it?
推荐答案
探查器仅在 Visual Studio 2008 的 Team System 版本中可用.我使用的最后一个包含探查器的版本是 Visual C++ 6.0.
The profiler is only available in the Team System editions of Visual Studio 2008. The last version that I used that included a profiler was Visual C++ 6.0.
对于 Visual Studio 2005,您可以尝试 Compuware DevPartner 性能分析社区版.
For Visual Studio 2005, you could try Compuware DevPartner Performance Analysis Community Edition.
这篇关于在 Visual Studio 2008 PRO 中进行分析的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Visual Studio 2008 PRO 中进行分析


基础教程推荐
- 常量变量在标题中不起作用 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09