如果是大型的项目,还是得学会灵活使用 debug 的,之前一直不喜欢使用。
首先点击 eclipse 右上角的视图,将 Debug 视图调出来。
然后 打上 一些断点, 在程序代码的左边 双击 产生断点。
然后执行 选择对应的 debug模式启动,第一次启动会有提示 选择 Debug视图的, 选择 是,确定即可。
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。
对应的百度 经验: http://jingyan.baidu.com/article/e6c8503c7e46b6e54f1a18c5.html
http://blog.jobbole.com/93421/
http://www.cnblogs.com/sdksdk0/p/5585057.html