<legend id='ASYJK'><style id='ASYJK'><dir id='ASYJK'><q id='ASYJK'></q></dir></style></legend>
    1. <small id='ASYJK'></small><noframes id='ASYJK'>

      <tfoot id='ASYJK'></tfoot>

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

        在 Visual Studio 2015 中检查 STL 容器

        时间:2023-10-05
          <tfoot id='22brf'></tfoot>

                <tbody id='22brf'></tbody>

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

                <small id='22brf'></small><noframes id='22brf'>

              1. <legend id='22brf'><style id='22brf'><dir id='22brf'><q id='22brf'></q></dir></style></legend>
                  <bdo id='22brf'></bdo><ul id='22brf'></ul>
                  本文介绍了在 Visual Studio 2015 中检查 STL 容器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我运行的是 Visual Studio Enterprise 2015,版本 14.0.23107.0 D14REL.

                  I'm running Visual Studio Enterprise 2015, version 14.0.23107.0 D14REL.

                  在调试 C++ 程序时,我看不到 STL 容器的内容.

                  When debugging a C++ program I cannot see the contents of STL containers.

                  我已取消选中在变量窗口中显示对象的原始结构"选项(工具->选项->调试->常规).

                  I've got the "Show raw structure of objects in variables windows" option unchecked (Tools->Options->Debugging->General).

                  以下是说明问题的示例:

                  Here's an example that illustrates the problem:

                  #include <list>
                  #include <string>
                  #include <vector>
                  
                  int main()
                  {
                      std::string string = "test";
                      std::vector<int> vector{ 4, 5, 6 };
                      std::list<std::string> list{ "one", "two", "three" };
                      return 0;
                  }
                  

                  在 Locals 或 Watch 窗口中,我看到以下内容:

                  In the Locals or Watch windows I see the following:

                  list         [...]()
                  vector       [...](...
                    (error)    0
                    (error)    0
                  string       {npos=4294967295}
                    (error)    0
                    (error)    0
                  

                  如果我然后选中显示原始结构..."选项,我可以正确地深入到向量和字符串对象,但仍然不是列表!

                  If I then check the "Show raw structure..." option, I can correctly drill down into the vector and string objects, but still not the list!

                  是否还有其他选项我错过了,或者这是 VS 中的真正错误?

                  Is there another option that I've missed, or is this a genuine bug in VS?

                  推荐答案

                  我遇到了同样的问题.

                  您需要进入工具->选项->调试->常规并取消选中使用托管兼容模式"和使用本机兼容模式".

                  You need to go into Tools->Options->Debugging->General and uncheck both "Use Managed Compability Mode" and "Use Native Compability Mode".

                  这篇关于在 Visual Studio 2015 中检查 STL 容器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:将 MFC CString 转换为整数 下一篇:轮廓 opencv:如何消除二值图像中的小轮廓

                  相关文章

                  最新文章

                  <tfoot id='fFgvd'></tfoot>

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

                    1. <legend id='fFgvd'><style id='fFgvd'><dir id='fFgvd'><q id='fFgvd'></q></dir></style></legend>

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