Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Exceptions should be used only to denote exceptional conditions; they should not be used for ordinary control flow purposes. Catching an exception is likely to catch unexpected errors; see  ERR08-J. Do not catch NullPointerException or any of its ancestors for examples. When a program catches a specific type of exception, it does not know exactly where that exception was thrown. Using a catch clause to handle an exception that occurs in a known location is a poor solution; it is preferable to handle the error as soon as it occurs, or occurs—or to prevent it , if possible. The non-locality nonlocality of throw statements and corresponding catch statements can also impede optimizers from improving code that relies on exception handling. Catching exceptions also complicates debugging , as they because exceptions indicate a jump in control flow from the throw statement to the catch clause. Finally, exceptions need not be implemented to perform optimally, as it is assumed they are thrown only thrown upon exceptional circumstances. Throwing and catching an exception will often yield yields slower code than does handling the error with some other mechanism.

...

It uses an ArrayIndexOutOfBoundsException to detect the end of the array. Unfortunately, since ArrayIndexOutOfBoundsException is a RuntimeException, it could be thrown by processString() without being declared in a throws clause. So it is possible for processStrings() to terminate before all of the strings are processed.

...

This compliant solution uses a standard for loop to concatenate the strings. In this case, the ArrayIndexOutOfBoundsException can occur only occur under some exceptional circumstances , and can be handled outside of normal processing.

...

Technically this code need not catch ArrayIndexOutOfBoundsException since because it is a runtime exception. In fact, this code should not catch ARrayIndexOutOfBoundsException ArrayIndexOutOfBoundsException unless the method has a particular way of handling it (that differs from handling any other exception class). Otherwise, this code should just let the exception propagate up the call stack.

...

Use of exceptions for any purpose other than detecting and handling exceptional conditions complicates program analysis and debugging, degrades performance, and can increase maintenance costs.

...