myeclipse 断点调试

最基本的操作是:

1,首先在一个java文件中设断点,然后运行,当程序走到断点处就会转到debug视图下,

2,F5键与F6键均为单步调试,F5是stepinto,也就是进入本行代码中执行,F6是stepover,

也就是执行本行代码,跳到下一行,

3,F7是跳出函数stepreturn

4,F8是执行到最后。

=====================================

1.StepInto(alsoF5)跳入

2.StepOver(alsoF6)跳过

3.StepReturn(alsoF7)执行完当前method,然后return跳出此method

4.stepFilter逐步过滤一直执行直到遇到未经过滤的位置或断点(设置Filter:window-preferences-java-Debug-stepFiltering)

5.resume重新开始执行debug,一直运行直到遇到breakpoint

6.hitcount设置执行次数适合程序中的for循环(设置breakpointview-右键hitcount)

7.inspect检查运算。执行一个表达式显示执行值

8.watch实时地监视变量的变化

9.我们常说的断点(breakpoints)是指linebreakpoints,除了linebreakpoints,还有其他的断点类型:field(watchpoint)breakpoint,methodbreakpoint,exceptionbreakpoint.

10.fieldbreakpoint也叫watchpoint(监视点)当成员变量被读取或修改时暂挂

11.添加methodbreakpoint进入/离开此方法时暂挂(Run-methodbreakpoint)

12.添加Exceptionbreakpoint捕抓到Execption时暂挂(待续...)

断点属性:

1.hitcount执行多少次数后暂挂用于循环

2.enablecondition遇到符合你输入条件(为ture\改变时)就暂挂

3.suspendthread多线程时暂挂此线程

4.suspendVM暂挂虚拟机

13.variables视图里的变量可以改变变量值,在variables视图选择变量点击右键--changevalue.一次来进行快速调试。

14.debug过程中修改了某些code后--〉save&build-->resume-->重新暂挂于断点

===========================

例如你有如下程序:

publicstaticvoidmain(Stringargs[]){

MyDateaa=newMyDate();

aa.addDays(day);=============》(1)

System.out.println("eeeeeeeeeeeeeee");=============》(2)

}

publicStringaddDays(intmore_days){

System.out.println("1");=============》(3)

Stringresult="";=============》(4)

System.out.println("2");=============》(5)

returnresult;

}

你在(1)处加断点,运行到此处时如果StepInto(alsoF5)为跳入,则接着执行到(3)。再执行StepOver(alsoF6)执行本行,则执行到(4)。最后执行StepReturn(alsoF7),则跳出addDays方法,跳到(2)

相关推荐