2018年2月11日

VC++Debug避免F11步进不想要的函数中

摘要: It's often useful to avoid stepping into some common code like constructors or overloaded operators. Many times when you debug the code you probably s 阅读全文

posted @ 2018-02-11 17:49 我来乔23 阅读(242) 评论(0) 推荐(0) 编辑

VC++ Debug显示指针所指的array内容

摘要: If you expand a pointer and you only get a single item, just add ",n" to the entry in the watch window where n is the number of elements to expand. Fo 阅读全文

posted @ 2018-02-11 17:32 我来乔23 阅读(304) 评论(0) 推荐(0) 编辑

VC++ 在Watch窗口显示GetLastError值以及详细信息

摘要: You can display the value GetLastError() will return by putting "@err" in your watch window. You can see the error message associated with that value 阅读全文

posted @ 2018-02-11 17:22 我来乔23 阅读(436) 评论(0) 推荐(0) 编辑

VC++ Debug内存值

摘要: Memory Values If you're using the debug heap, memory is initialized and cleared with special values. Typically MFC automatically adds something like t 阅读全文

posted @ 2018-02-11 17:01 我来乔23 阅读(221) 评论(0) 推荐(0) 编辑

VC++ 给你的代码强制加一个硬断点

摘要: 类似与Javascript的 debugger; Hard code a debugger breakpoint If you need to insert a hard breakpoint in your code (perhaps because you need to attach to a 阅读全文

posted @ 2018-02-11 16:57 我来乔23 阅读(533) 评论(0) 推荐(0) 编辑

导航