Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了一些问题,其中我的应用程序为发布和调试模式提供了不同的结果。是否有任何工具可以用来检查两种模式之间函数的内存映射差异和变量值。
如果您使用的是类 Unix 操作系统,您可能想看看Valgrind。调试和发布模式之间的输出差异通常是由于可执行文件具有不同的内存布局,因此暴露了与内存相关的错误,而这些错误在其他情况下是不可见的。