Chapter 8: Exceptions and I/O Streams

Download Report

Transcript Chapter 8: Exceptions and I/O Streams

Chapter 8: Exceptions and I/O Streams
Presentation slides for
Java Software Solutions
Foundations of Program Design
Third Edition
by John Lewis and William Loftus
Java Software Solutions is published by Addison-Wesley
Presentation slides are copyright 2002 by John Lewis and William Loftus. All rights reserved.
Instructors using the textbook may use and modify these slides for pedagogical purposes.
Exceptions
 An exception is an object that describes an unusual or
erroneous situation
 Exceptions are thrown by a program, and may be caught
and handled by another part of the program
 A program can be separated into a normal execution flow
and an exception execution flow
 An error is also represented as an object in Java, but
usually represents a unrecoverable situation and should
not be caught
2
Exception Handling
 Java has a predefined set of exceptions and errors that
can occur during execution
 A program can deal with an exception in one of three
ways:
• ignore it
• handle it where it occurs
• handle it an another place in the program
 The manner in which an exception is processed is an
important design consideration
3
Exception Handling
 If an exception is ignored by the program, the program
will terminate abnormally and produce an appropriate
message
 The message includes a call stack trace that indicates
the line on which the exception occurred
 The call stack trace also shows the method call trail that
lead to the attempted execution of the offending line
• The getMessage method returns a string explaining why the
exception was thrown
• The printStackTrace method prints the call stack trace
 See Zero.java (page 449)
4
Zero
public class Zero {
public static void main (String[] args) {
int numerator = 10;
int denominator = 0;
System.out.println (numerator / denominator);
System.out.println ("This text will not be printed.");
}
}
Zero Output
java.lang.ArithmeticException: / by zero
at Zero.main(Zero.java:6)
Exception in thread "main"
Zero2
public class Zero2 {
public static void main (String[] args) {
int numerator = 10;
int denominator = 0;
}
}
m1(numerator, denominator);
System.out.println ("This text will not be printed.");
static void m1(int num, int denom) {
m2(num, denom);
System.out.println ("This text will not be printed either.");
}
static void m2(int num, int denom) {
int div = num / denom;
System.out.println ("no chance here as well");
}
Zero2 Output
java.lang.ArithmeticException: / by zero
at Zero2.m2(Zero2.java:15)
at Zero2.m1(Zero2.java:11)
at Zero2.main(Zero2.java:6)
Exception in thread "main"
The try Statement
 To process an exception when it occurs, the line that
throws the exception is executed within a try block
 A try block is followed by one or more catch clauses,
which contain code to process an exception
 Each catch clause has an associated exception type and
is called an exception handler
 When an exception occurs, processing continues at the
first catch clause that matches the exception type
 See ProductCodes.java (page 451)
9
ProductCodes
code = scanner.next();
try {
zone = code.charAt(9);
district = Integer.parseInt(code.substring(3, 7));
valid++;
if (zone == 'R' && district > 2000)
banned++;
}
catch (StringIndexOutOfBoundsException exception)
{
System.out.println ("Improper code length: " + code);
}
catch (NumberFormatException exception)
{
System.out.println ("District is not numeric: " + code);
}
The finally Clause
 A try statement can have an optional clause following the
catch clauses, designated by the reserved word
finally
 The statements in the finally clause always are executed
 If no exception is generated, the statements in the finally
clause are executed after the statements in the try block
complete
 If an exception is generated, the statements in the finally
clause are executed after the statements in the
appropriate catch clause complete
11
Finally Example
int numerator = 10;
int denominator = 0;
try {
System.out.println (numerator / denominator);
System.out.println ("This text will not be printed.");
}
catch(java.lang.ArithmeticException e) {
System.out.println ("This text will be printed.");
}
finally {
System.out.println ("This text will also be printed.");
}
The throw Statement
 A programmer can define an exception by extending the
Exception class or one of its descendants
 Exceptions are thrown using the throw statement
 Usually a throw statement is nested inside an if statement
that evaluates the condition to see if the exception should
be thrown
13
MyException
public class MyException extends Exception
{
//----------------------------------------------------------------// Sets up the exception object with a particular message.
//----------------------------------------------------------------MyException(String message)
{
super (message);
}
}
public class Zero3 {
public static void main (String[] args) {
m1();
}
static void m1() {
try {
m2();
}catch(MyException e) {
e.printStackTrace();
}
System.out.println ("Exception was handled, I am still here");
}
static void m2() throws MyException {
throw new MyException("no excuse");
}
}
Output
Exception was handled, I am still here
MyException: no excuse
at Zero3.m2(Zero3.java:15)
at Zero3.m1(Zero3.java:8)
at Zero3.main(Zero3.java:3)
Checked Exceptions
 An exception is either checked or unchecked
 A checked exception either must be caught by a method,
or must be listed in the throws clause of any method that
may throw or propagate it
 A throws clause is appended to the method header
 The compiler will issue an error if a checked exception is
not handled appropriately
17
Unchecked Exceptions
 An unchecked exception does not require explicit
handling, though it could be processed that way
 The only unchecked exceptions in Java are objects of
type RuntimeException or any of its descendants
 Errors are similar to RuntimeException and its
descendants
• Errors should not be caught
• Errors to not require a throws clause