F.5 The watch Command
In this section, we present the watch command, which tells the debugger to watch a field. When that field is about to change, the debugger will notify you. In this section, you’ll learn how to use the watch
command to see how the Account
object’s field balance
is modified during the execution of the AccountTest
application.
As in the preceding two sections, we assume that you’ve followed Step 1 and Step 2 in Section F.2 to open the Command Prompt, change to the correct examples directory and compile classes AccountTest
and Account
for debugging (i.e., with the -g
compiler option).
-
Starting the debugger. Start the debugger by typing
jdb
. -
Watching a class’s field. Set a watch on
Account
’sbalance
field by typingwatch ...
Get Java How to Program (early objects), 9/e now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.