Link to home
Start Free TrialLog in
Avatar of mandalorian4
mandalorian4

asked on

Debugging Java code in Eclipse

I am a recent convert form VB/ VB.net to Java.  So far the onlyt thing I miss about MS are the debugging tools.  The MS IDE provided a "step through" feature, allowing me to execute code 1 line at a time (stepping through or around modules as necessary) does anyone know if Eclipse offers this feature- if so how is it used.  Thank you.

Avatar of SuperKarateMonkey
SuperKarateMonkey

Yes, Eclipse does.  It lets you set breakpoints, step through code line-by-line, view variable values at each given time, pretty much everything java does.  You just need to right-click on a section of your code and choose "Set Breakpoint."

ASKER CERTIFIED SOLUTION
Avatar of SuperKarateMonkey
SuperKarateMonkey

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial