something about gdb

Posted 树梢流年

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了something about gdb相关的知识,希望对你有一定的参考价值。

1 gdb 基础命令

b(break):          添加断点

r(run):          重头开始运行程序

n(next):        下一步

c(continue):       程序继续运行,直到下一处断点,或者程序运行到结束

q(quit):         退出程序界面

 

2 gdb 断点

b main                     (加上函数名字)

b main.cpp:12          (文件名+行号)

b 12         (当前文件的行号)

b Object::Create      (类名 + 成员函数)

显示断点:   info break

删除断点:    del break 2      ( 2 是编号)

以上是关于something about gdb的主要内容,如果未能解决你的问题,请参考以下文章

Something About Variable

something about SAM

Somethings About 《c++编程思想》

something about gdb

Something about the microsoft HttpContext domain design

something about MyBatis