怎样在Eclipse中使用debug调试程序?
最基本的操作是
首先在一个java文件中设断点然后debug as-->open debug Dialog然后在对话框中选类后--> Run
当程序走到断点处就会转到debug视图下
F键与F键均为单步调试F是step into也就是进入本行代码中执行F是step over
也就是执行本行代码跳到下一行
F是跳出函数
F是执行到最后
Step Into (also F) 跳入
Step Over (also F) 跳过
Step Return (also F) 执行完当前method然后return跳出此method
step Filter 逐步过滤 一直执行直到遇到未经过滤的位置或断点(设置Filter:windowpreferencesjavaDebugstep Filtering)
resume 重新开始执行debug一直运行直到遇到breakpoint
hit count 设置执行次数 适合程序中的for循环(设置 breakpoint view右键hit count)
inspect 检查 运算执行一个表达式显示执行值
watch 实时地监视变量的变化
我们常说的断点(breakpoints)是指line breakpoints除了line breakpoints还有其他的断点类型field(watchpoint)breakpointmethod breakpointexception breakpoint
field breakpoint 也叫watchpoint(监视点) 当成员变量被读取或修改时暂挂
添加method breakpoint 进入/离开此方法时暂挂(Runmethod breakpoint)
添加Exception breakpoint 捕抓到Execption时暂挂(待续)
断点属性
hit count 执行多少次数后暂挂 用于循环
enable condition 遇到符合你输入条件(为ture\改变时)就暂挂
suspend thread 多线程时暂挂此线程
suspend VM 暂挂虚拟机
variables 视图里的变量可以改变变量值在variables 视图选择变量点击右键change value一次来进行快速调试
debug 过程中修改了某些code后〉save&build>resume>重新暂挂于断点