IDEA Debugging

##Debugging Introduction Using debug we can better locate the problem and learn framwork.

##Debugging Process 1、Set a breakpoint in the program.

2、[Step Into] Go to the next step.

3、[Step over] Skip the method.

4、[Show Execution Point] Back to execution point.

5、[Force Step Into]Go to the next step, but, don't ignore the JDK method.

6、[Step Out] Jump out this method.

7、[Drop Frame] Return to the place of quoted method.

8、[Run to Cursor] Run to curser, do not set point.

9、[Evalute Expression] Variable of inspection and modification.

10、[Resume] Jump to next breakpoint.

##Condition breakpoint 当我们在断点设置的条件成立时,这个断点才会起作用。

##Multi-thread debugging 多线程debug敬请期待...

##Remote debugging 远程debug敬请期待...

原文地址:https://www.cnblogs.com/feiqiangsheng/p/12588590.html