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 中进行分析
基础教程推荐
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- c++ STL设置差异 2022-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
