dbx简单使用

dbx使用:
编译的时候使用 -g 参数
dbx ./a.out    //载入可执行文件
file 7.c  //设置当前文件
list main  //展示某个函数体
stop at 13  //在13行设置断点
status  //获取当前断点的列表
cond  //从断点出继续执行
next     //单步执行,跳过函数
step    //步入函数
where  //查看调用栈
print   //查看变量值

你可能感兴趣的:(list,File)