I know that Eclipse have a function that allow us to see the steps of execution of a program.
Can anyone tell me how can I find it? I really need it to study and underst
Executing your java program step by step you need to follow a few steps:
public static void main(String[] args)
.
The breakpoint looks like this -> For deeper insight look at the tutorial Here
Look for the little green bug at the top. If you run it by pressing this icon, your application will run in a new perspective and stop at your breakpoints.
Enter breakpoints by clicking the area where you see the blue dot in this picture.
Navigate inside of the debugger with:
Green arrow is for running till next breakpoint. Red square is for terminating the process. The 90degree arrow goes into methods you invoke showing each step IN the method. The last arrow executes them without showing the steps.
If you're done with debugging you can switch perspective here.(upper right corner)