Eclipse debug

来源:互联网 发布:windows dns解析日志 编辑:程序博客网 时间:2024/04/29 18:10

A
1.Step Into (also F5) 跳入
2.Step Over (also F6) 跳过
3.Step Return (also F7) 执行完当前method,然后return跳出此method
4.step Filter 逐步过滤 一直执行直到遇到未经过滤的位置或断点(设置Filter:window-preferences-java-Debug-step Filtering)
5.resume 重新开始执行debug,一直运行直到遇到breakpoint
6.hit count 设置执行次数   适合程序中的for循环(设置 breakpoint view-右键hit count)
7.inspect 检查 运算。执行一个表达式显示执行值
8.watch 实时地监视变量的变化
9.variables 视图里的变量可以改变变量值,在variables 视图选择变量点击右键--change value.一次来进行快速调试。
10.debug 过程中修改了某些code后--〉save&build-->resume-->重新暂停于断点

B.断点类型
Line breakpoint
    在断点行暂停
field breakpoint   (也叫 watchpoint)
     field breakpoint 也叫watchpoint(监视点) 当成员变量被读取或修改时暂停
method breakpoint,
     添加method breakpoint 进入/离开此方法时暂停(Run-method breakpoint)
exception breakpoint.
     添加Exception breakpoint 捕抓到Execption时暂停(待续...)
java class load break point
    当load 指定的class时发生,有对话框让你指定的class.


C 断点属性:
    在 break point property 对话框里编辑
     1.hit count 执行多少次数后暂停 用于循环
     2.enable condition 遇到符合你输入的条件时(为ture/改变时)就暂停
     3.suspend thread 多线程时暂停此线程
     4.suspend VM 暂停虚拟机
     5.Filter

原创粉丝点击