NETBEANS DEBUGGER. To create a breakpoint place the cursor at the desired location. Go to the Run...

Post on 18-Jan-2016

225 views 0 download

Tags:

Transcript of NETBEANS DEBUGGER. To create a breakpoint place the cursor at the desired location. Go to the Run...

NETBEANS DEBUGGER

To create a breakpoint place the cursor at the desired location.Go to the Run -> toogle line Breakpoint or Ctrl +F8 . It creates the breakpoint on the line where cursor is.The following line will be highlighted in pink to show that the breakpoint has been set.

The other way is

Click on the run -> new breakpoint.

Set the method, class or thread in the type of breakpoint you want to set.

When debugging, Java will stop at the breakpoint and let you examine the program ‘in progress’.

For Debugging the main project.

Run -> debug Main Project or Ctrl +F5

You can stop debugging by clicking on this buttonThe debugger the window consists of breakpoints, local variables and watches etc.These let you examine the values of variables line by line, as the program runs

Then you have operations for stepping line by line through the program.

Window -> debugging -> sources or alt+ shift F8

Check on the required on the box in the sources window

Watches can be made by Run -> new watch.

Or

Click on the watches in Debugger window - >select a existing tab and right click -> new watch. This lets you specify a variable and see the value at each line.