黑马程序员-----Eclipse 中 drop to frame 的调试技巧



Eclipse 中 drop to frame的调试技巧  


知道了 Eclipse debug时有个 drop to frame的技巧。这是我以前不知道的,自己又查了一下这个功能的含义。官方的解释是:

Select the Drop to Frame command [  ] to re-enterthe selected stack frame in the Debug View.

Note this command is only available ifthe current VM supports drop to frame and the selected stackframe is not thetop frame or a frame in a native method.

就是说,这个功能可以重新跳到当前方法的开始处重新执行,并且所有上下文变量的值也回到那个时候。不一定是当前方法,可以点击当前调用栈中的任何一个frame跳到那里(除了最开始的那个frame)。主要用途是所有变量状态快速恢复到方法开始时候的样子重新执行一遍,即可以一遍又一遍地在那个你关注的上下文中进行多次调试(结合改变变量值等其它功能),而不用重来一遍调试到哪里了。当然,原来执行过程中产生的副作用是不可逆的(比如你往数据库中插入了一条记录)。


这里也说了如何使用这个功能:http://www.javalobby.org/forums/thread.jspa?threadID=15271&tstart=0

其实这个功能早就有了,就是一般人不知道或很少使用。

 

你可能感兴趣的:(黑马程序员-----Eclipse 中 drop to frame 的调试技巧)