• <tfoot id='NJiAh'></tfoot>

    <small id='NJiAh'></small><noframes id='NJiAh'>

      <legend id='NJiAh'><style id='NJiAh'><dir id='NJiAh'><q id='NJiAh'></q></dir></style></legend>

        <bdo id='NJiAh'></bdo><ul id='NJiAh'></ul>
      1. <i id='NJiAh'><tr id='NJiAh'><dt id='NJiAh'><q id='NJiAh'><span id='NJiAh'><b id='NJiAh'><form id='NJiAh'><ins id='NJiAh'></ins><ul id='NJiAh'></ul><sub id='NJiAh'></sub></form><legend id='NJiAh'></legend><bdo id='NJiAh'><pre id='NJiAh'><center id='NJiAh'></center></pre></bdo></b><th id='NJiAh'></th></span></q></dt></tr></i><div id='NJiAh'><tfoot id='NJiAh'></tfoot><dl id='NJiAh'><fieldset id='NJiAh'></fieldset></dl></div>
      2. 进入时如何跳过VS 2008中的常见类?

        How to skip common classes in VS 2008 when stepping in?(进入时如何跳过VS 2008中的常见类?)
            <bdo id='Iu6YJ'></bdo><ul id='Iu6YJ'></ul>

            <tfoot id='Iu6YJ'></tfoot>

              <small id='Iu6YJ'></small><noframes id='Iu6YJ'>

              <i id='Iu6YJ'><tr id='Iu6YJ'><dt id='Iu6YJ'><q id='Iu6YJ'><span id='Iu6YJ'><b id='Iu6YJ'><form id='Iu6YJ'><ins id='Iu6YJ'></ins><ul id='Iu6YJ'></ul><sub id='Iu6YJ'></sub></form><legend id='Iu6YJ'></legend><bdo id='Iu6YJ'><pre id='Iu6YJ'><center id='Iu6YJ'></center></pre></bdo></b><th id='Iu6YJ'></th></span></q></dt></tr></i><div id='Iu6YJ'><tfoot id='Iu6YJ'></tfoot><dl id='Iu6YJ'><fieldset id='Iu6YJ'></fieldset></dl></div>
              • <legend id='Iu6YJ'><style id='Iu6YJ'><dir id='Iu6YJ'><q id='Iu6YJ'></q></dir></style></legend>
                  <tbody id='Iu6YJ'></tbody>

                1. 本文介绍了进入时如何跳过VS 2008中的常见类?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何在单步调试时跳过 VS 2008 调试器中的常见类?

                  How can I skip common classes in VS 2008 debugger when stepping in?

                  例如,我不希望调试器进入任何 std:: 类.我怎样才能做到这一点?

                  For example, I do not want debugger to step into any of the std:: classes. How can I achieve that?

                  我在 VS 2005 及更早版本中找到了这样做的方法,但在 2008 年没有

                  I've found ways of doing this in VS 2005 and earlier, but not 2008

                  推荐答案

                  你可以通过在注册表中输入条目来做到这一点(我知道,这很糟糕).您正在寻找的密钥从 32 位到 64 位系统不等.对于 32 位系统,关键是

                  You can do this by entering entries into the registry (I know, it sucks). The key you are looking for varies from 32 to 64 bit systems. For 32-bit systems the key is

                  HKEY_LOCAL_MACHINESoftwareMicrosoftVisualStudio9.0NativeDEStepOver

                  如果您运行的是 64 位操作系统和 32 位 Visual Studio,那么关键是

                  If you're running a 64 bit OS and a 32 bit Visual Studio the key is

                  HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftVisualStudio9.0NativeDEStepOver

                  Wow6432Node 键是一个 在 64 位系统上运行的 32 位应用程序的密钥.(旁注:在注册表中搜索_RTC_CheckEsp"可能会将您带到正确的位置,它是 Visual Studio 9 中的默认条目)

                  The Wow6432Node key is a key present for 32 bit applications running on 64 bit systems. (Sidenote: searching the registry for "_RTC_CheckEsp" probably will lead you to the right place, it's a default entry in Visual Studio 9)

                  您应该熟悉该语法,但作为示例,一个简单的条目可以是字符串值 boost::.*=NoStepInto,这将避免调试器进入 Boost.请参阅 http://www.cprogramming.com/debugging/visual-studio-msvc-debugging-NoStepInto.html 其他一些示例.

                  The syntax should be familiar to you, but as an example, a simple entry could be string value boost::.*=NoStepInto which will avoid the debugger to step into Boost. See http://www.cprogramming.com/debugging/visual-studio-msvc-debugging-NoStepInto.html for some other examples.

                  希望这有帮助:)

                  这篇关于进入时如何跳过VS 2008中的常见类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  C++ stl unordered_map implementation, reference validity(C++ stl unordered_map 实现,参考有效性)
                  C++: Is it possible to use a reference as the value in a map?(C++:是否可以使用引用作为映射中的值?)
                  Where ampersand quot;amp;quot; can be put when passing argument by reference?(其中符号“amp;通过引用传递参数时可以放置吗?)
                  Why can a non-const reference parameter be bound to a temporary object?(为什么可以将非常量引用参数绑定到临时对象?)
                  What is a dangling reference?(什么是悬空引用?)
                  C++ reference changes when push_back new element to std::vector(当 push_back 新元素到 std::vector 时,C++ 引用发生变化)

                2. <small id='7rDqH'></small><noframes id='7rDqH'>

                  <legend id='7rDqH'><style id='7rDqH'><dir id='7rDqH'><q id='7rDqH'></q></dir></style></legend>
                  <tfoot id='7rDqH'></tfoot>

                            <tbody id='7rDqH'></tbody>
                            <bdo id='7rDqH'></bdo><ul id='7rDqH'></ul>
                            <i id='7rDqH'><tr id='7rDqH'><dt id='7rDqH'><q id='7rDqH'><span id='7rDqH'><b id='7rDqH'><form id='7rDqH'><ins id='7rDqH'></ins><ul id='7rDqH'></ul><sub id='7rDqH'></sub></form><legend id='7rDqH'></legend><bdo id='7rDqH'><pre id='7rDqH'><center id='7rDqH'></center></pre></bdo></b><th id='7rDqH'></th></span></q></dt></tr></i><div id='7rDqH'><tfoot id='7rDqH'></tfoot><dl id='7rDqH'><fieldset id='7rDqH'></fieldset></dl></div>