|
24. Debugging
24.1 Summary
- Methods of debugging
- System.out / System.err
24.2 Contents
Methods of debugging
What happens when an unproblematically compiled program starts spitting out exceptions? How do we figure out where our program is running into problems? What is a systematic approach to debugging? How do we decrypt the dozens of lines of exceptions?
24.3 System.out / System.err
Most courses begin with System.out; this course end with it. Introduction to System.out.println() as a good way to track debugging information. What are debugging flags.
|