ddd
参考材料:ddd官方说明文档
program->run: 开始调试程序(run with argument中无需填写函数名,只要其余参数)
next:execute the current line
print:在debugger console中显示变量
display:在data window中显示变量,并不断刷新
until:针对循环起作用,一次执行一轮
clear:删除旧的breakpoint
step:进入一个函数观察
status->Backtrace:查看stack frame display 函数调用栈
set:assign a value to a variable
context:执行完整个代码剩余的部分
program->exit:退出这次ddd过程
lookup:查找标识符的definition
find:查找标识符在文本中出现的位置
Edit->debugger Settings:为debugger设立source path
原文链接:https://www.f2er.com/javaschema/285109.html