VS查看动态数组内存中内容(转)

原文章:

https://blog.csdn.net/sinat_36219858/article/details/80720527

摘要:

用VS的快速监视查看数组内容。
进入调试状态后,工具栏调试中找到快速监视。
对于一维数组a[4], 数组名+逗号+长度

QF:

同样适用于CArray对象,对其m_pData成员进行"逗号+长度"操作,以及CMapStringToPtr的m_pHashTable.

又发现可以对CArray对象的GetCount()函数进行快速监视,能够获取其值.

新战场:https://blog.csdn.net/Stephen___Qin
原文地址:https://www.cnblogs.com/Stephen-Qin/p/12337551.html