摘要:
原文链接Cpp代码#include <iostream.h>class Base { public: Base() { mPtr = new int; } ~Base() { delete mPtr; cout<<"Base::Destruction"<<endl;} private: int* mPtr; } ;class Derived : public Base { public: Derived() { mDerived = new long; } ~Derived() { delete mDerived; cout<< 阅读全文
摘要:
原文链接也许有人不知道CDB是什么,CDB是windbg的小兄弟,基于command line,对于我这个比较喜欢用command line的人,CDB比windbg更容易上手。象GDB,CDB这些工具,命令都很多,但是我们只要熟记最常用的"三板斧"就可以工作了。1.启动1)直接调试:gdb program [core]cdb programorcdb -z DumpFile2)attach方式gdb attach pidcdb -pn ExeNameorcdb -p pid2.显示堆栈GDB: btCDB: k3. 设置断点GDB: b [file:]lineCDB: b 阅读全文