std::map 蹩脚字符仅在发布模式下

发布于 2024-10-07 17:27:58 字数 560 浏览 4 评论 0原文

我有一个 std::map 作为函数的参数,在调试模式(VS2008)下,映射具有正确的键和值,但是当我在发布中启动程序时,映射中存在蹩脚的字符!

代码转储:

    std::map<CString, CString> libVersions;
    ... // fill values 
    utilFunctions->Function(&libVersions))

    bool UtilityFunctions::Function(std::map<CString,CString> *dllMapData)
    {
       ...
       map<CString,CString>::iterator it;

       for(it=dllMapData->begin(); it!=dllMapData->end(); it++)
       {  
          ...
       }
       ...
    }

有什么想法为什么此代码在发布模式下不起作用???

感谢和问候

I have an std::map as parameter for an function and in Debug Mode (VS2008) the map have the correct keys and values, but when I start the program in Release there are crappy chars in to the map!

Code dump:

    std::map<CString, CString> libVersions;
    ... // fill values 
    utilFunctions->Function(&libVersions))

    bool UtilityFunctions::Function(std::map<CString,CString> *dllMapData)
    {
       ...
       map<CString,CString>::iterator it;

       for(it=dllMapData->begin(); it!=dllMapData->end(); it++)
       {  
          ...
       }
       ...
    }

Any ideas why this code is not functional in Release mode???

Thanks and greets

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

む无字情书 2024-10-14 17:27:58

我的猜测是,在发行版中,您仍在针对调试 CRT 进行编译,并且没有定义 _DEBUG(反之亦然)。

My guess is that in release you are still compiling against the debug CRT and don't have _DEBUG defined (or vice versa).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文