Does anyone know how to use eclipse or net beans to debugg java coding?

Okay personally i love netbeans. I’ve used eclipse and would use it if i had to but definately netbeans is my IDE of choice for java.

Debugging in netbeans is extreemly easy. The key to debugging will be setting breakpoints and watches on varaibles and what not. From the Netbeans IDE simply click in the space on the line you want to set a break point for between your code and project navigation panel. THen run the application in debug more and it will run through as normal untill it hits that break point. Once you hit the break point you will use the step into, step over and step back features of the application to proceed through the remainder of the application..

Read more here: Source link