Introduction to Debugging in Java and Netbeans
72Netbeans provides powerful support for debugging your Java programs. In this tutorial we look at the basics of debugging, primarily setting breakpoints in a program and querying values during program execution.
Figure 1 illustrates a simple Java program. The program doesn't accomplish much; it's just intended as a starting point for our tutorial.
Our program contains a print statement. Such a statement is the most elementary form of debugging. Figure 02 illustrates the output generated by the program.
Let's take the next step and use the debugging tools provided by Netbeans and Java. In Figure 03 we set a breakpoint. The breakpoint will cause the program to pause so we can examine what it's up to while it's still running.
We don't have to execute the program by hand. We set the breakpoint, start the program in Debug Mode, and wait for the breakpoint to get hit.
The next step is to run the program, but we have to run it in a special way to take advantage of the breakpoint. Figure 04 shows how to launch the program in Debug Mode.
in Debug Mode, the program will stop on breakpoints. Debug Mode causes the program to run more slowly than non-Debug Mode, but that's a small price to pay for the power and flexibility of debugging. Debug Mode has a negligible effect on most small programs.
In Figure 05 the program has been launched in Debug Mode, it started running, ran up to the breakpoint, and paused. The next line to be executed is highlighted in green by NetBeans.
Note: be sure that your breakpoint will be in the execution path. If it's not in the execution path, it won't cause the program to pause. That can get frustrating.
This is the good part. The program is in suspended animation. We can examine the state of the variables and learn precisely what is happening.
Remember that the green highlight is on the next line to be executed. The line of code has not been executed, yet.
In Figure 06 the mouse hovers over the variable alpha and NetBeans displays the current value of the variable in a context bubble. Very cool.
The value of alpha is 3 because it was initialized to that value in line 11, where it was declared.
One more feature we will introduce is the concept of single-stepping. Since the green highlighted line has not yet been executed, we click Debug / Step Over (or press the F8 key) to excecute that line. The green highlight moves to the next line in the program.
You can use single-stepping to follow the code path of your program and find logic errors lurking deep within your code.
PrintShare it! — Rate it: up down flag this hub
- New Language Running on the JVM
Google and several other companies have intorduced a new language experiment called Noop that runs on the JVM. It tried to include all the best practices in the programming world while discouraging the the worst ones. On their Google Code site the following reasons to use Noop over other languages. Dependency Injection changed the way we [...] - 3 months ago
- SDK update for Java FX
As many of you know the new SDK update was release for Java FX. Their are many significant changes that have been made. Most are for the better. Below are some new classes that have been added for creating UI controls. Behavior Button ButtonBase CheckBox Control Hyperlink Keystroke Label Labeled ListView ProgressBar ProgressIndicator RadioButton ScrollBar [...] - 5 months ago
- JavaFX
Sun has released a new video that shows some of the new features of JavaFX. They are demonstrated by Jacob Lehrbaum, Senior Product Line Manager for JavaFX Marketing. JavaFX is a platform for creating and delivering Rich Internet Applications (RIAs) — web applications that use rich media types such as video, audio, graphics, and rich text [...] - 9 months ago
|
Killer Game Programming in Java
Price: $33.69
List Price: $59.99 |
|
Introduction to Java Programming, Comprehensive Version (7th Edition)
Price: $90.72
List Price: $118.00 |
|
Beginning Programming with Java For Dummies (For Dummies (Computer/Tech))
Price: $4.99
List Price: $24.99 |
|
Head First Java, 2nd Edition
Price: $27.99
List Price: $44.95 |









