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.
我正在调试一个经常使用 Rogue Wave 的 Visual C++ 项目。我想轻松查看 RW 容器的内容,即我想查看列表元素而不是这个:
我有哪些选择?autoexp.dat 可以做到这一点吗?
autoexp.dat 可以做到,但难度很大。
您还可以编写自己的调试器扩展来可视化它们,将它们放在 DLL 中并在 autoexp.dat 中引用它。但是,这又是相当困难的。
首先在 autoexp.dat 中查看如何为标准 STL 容器(向量、列表、映射、字符串...)定义预览,然后尝试为您自己的 RWTIsvSlist 类模拟这一点。