How to use breakpoints in Eclipse

137,566

Solution 1

Googling gives many sites... Debugging with the Eclipse platform for one.

Solution 2

To put breakpoints in your code, double click in the left margin on the line you want execution to stop on. You may alternatively put your cursor in this line and then press Shift+Ctrl+B.

To control execution use the Step Into, Step Over and Step Return buttons. They have the shortcuts F5, F6 and F7 respectively.

To allow execution to continue normally or until it hits the next breakpoint, hit the Resume button or F8.

Solution 3

Here is a video about Debugging with eclipse.

For more details read this page.

Instead of Debugging as Java program, use Debug as Android Application

May help new comers.

Solution 4

Put breakpoints - double click on the margin. Run > Debug > Yes (if dialog appears), then use commands from Run menu or shortcuts - F5, F6, F7, F8.

Share:
137,566
Jisson
Author by

Jisson

Python, Django Developer

Updated on January 24, 2020

Comments

  • Jisson
    Jisson over 4 years

    I am using the Eclipse IDE. I don't know how effectively put breakpoints in Eclipse and go forward and backward into it. Can anyone help me?

    Can anyone suggest a site suitable for me?