gdb 使用简介

gdb使用

gdb release.exe(可执行程序名)
>r(run) start (参数)

其他命令
b(break) function name  设断点
n(next)                 单步执行
s(step)     step into
l(list)     显示源码
c(continue)    继续程序
bt(backtrace)   显示栈中内容
p(print)    检查表达式的值

你可能感兴趣的:(C++,c,C#)