cop 3503 fall 2012 shayan javed lecture 11

89
1 / 89 COP 3503 FALL 2012 SHAYAN JAVED LECTURE 11 Programming Fundamentals using Java 1

Upload: deva

Post on 16-Feb-2016

42 views

Category:

Documents


0 download

DESCRIPTION

COP 3503 FALL 2012 Shayan Javed Lecture 11. Programming Fundamentals using Java. Exception Handling. Errors. Syntax Errors Logic Errors Runtime Errors. Syntax Errors. Arise because language rules weren’t followed. Syntax Errors. Arise because language rules weren’t followed. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: COP 3503 FALL 2012 Shayan Javed Lecture 11

1 / 89

COP 3503 FALL 2012SHAYAN JAVED

LECTURE 11

Programming Fundamentals using Java

1

Page 2: COP 3503 FALL 2012 Shayan Javed Lecture 11

2 / 89

Exception Handling

Page 3: COP 3503 FALL 2012 Shayan Javed Lecture 11

3 / 89

Errors

Syntax Errors

Logic Errors

Runtime Errors

Page 4: COP 3503 FALL 2012 Shayan Javed Lecture 11

4 / 89

Syntax Errors

Arise because language rules weren’t followed.

Page 5: COP 3503 FALL 2012 Shayan Javed Lecture 11

5 / 89

Syntax Errors

Arise because language rules weren’t followed.

Detected by the compiler javac for Java g++ for C++

Page 6: COP 3503 FALL 2012 Shayan Javed Lecture 11

6 / 89

Logic Errors

Program compiles and runs, but results are wrong.

Page 7: COP 3503 FALL 2012 Shayan Javed Lecture 11

7 / 89

Logic Errors

Program compiles and runs, but results are wrong. Detected and fixed through testing.

Page 8: COP 3503 FALL 2012 Shayan Javed Lecture 11

8 / 89

Logic Errors

Program compiles and runs, but results are wrong. Detected and fixed through testing.

Arise because logic coded by the programmer was incorrect.

Page 9: COP 3503 FALL 2012 Shayan Javed Lecture 11

9 / 89

Logic Errors

Program compiles and runs, but results are wrong. Detected and fixed through testing.

Arise because logic coded by the programmer was incorrect. Example: wrote c = a - b instead of c = a + b

Page 10: COP 3503 FALL 2012 Shayan Javed Lecture 11

10 / 89

Runtime Errors

Occur when program is running – environment detects it and can’t carry it out

Page 11: COP 3503 FALL 2012 Shayan Javed Lecture 11

11 / 89

Runtime Errors

Occur when program is running – environment detects it and can’t carry it out

Examples of Code Errors: Divide by zero

Page 12: COP 3503 FALL 2012 Shayan Javed Lecture 11

12 / 89

Runtime Errors

Occur when program is running – environment detects it and can’t carry it out

Examples of Code Errors: Divide by zero Array out of bounds

Page 13: COP 3503 FALL 2012 Shayan Javed Lecture 11

13 / 89

Runtime Errors

Occur when program is running – environment detects it and can’t carry it out

Examples of Code Errors: Divide by zero Array out of bounds Accessing a null pointer (reference)

Page 14: COP 3503 FALL 2012 Shayan Javed Lecture 11

14 / 89

Runtime Errors

Occur when program is running – environment detects it and can’t carry it out

Examples of Code Errors: Divide by zero Array out of bounds Accessing a null pointer (reference) Integer overflow

Page 15: COP 3503 FALL 2012 Shayan Javed Lecture 11

15 / 89

Runtime Errors

Occur when program is running – environment detects it and can’t carry it out

Examples of Code Errors: Divide by zero Array out of bounds Accessing a null pointer (reference) Integer overflow

Programs crash when such exceptions are not handled

Page 16: COP 3503 FALL 2012 Shayan Javed Lecture 11

16 / 89

Errors

int[] numbers = { 1.5, 5, 7 };

System.out.prntln(numbers[numbers.length]);

Try to point out all the errors in this code

Page 17: COP 3503 FALL 2012 Shayan Javed Lecture 11

17 / 89

Errors

int[] numbers = { 1.5, 5, 7 };

System.out.prntln(numbers[numbers.length]);

Syntax Error(s)

Page 18: COP 3503 FALL 2012 Shayan Javed Lecture 11

18 / 89

Errors

int[] numbers = { 1.5, 5, 7 };

System.out.prntln(numbers[numbers.length]);

Syntax Error(s)

Page 19: COP 3503 FALL 2012 Shayan Javed Lecture 11

19 / 89

Errors

int[] numbers = { 1.5, 5, 7 };

System.out.prntln(numbers[numbers.length]);

Syntax Error(s)

Runtime Error(s)

Page 20: COP 3503 FALL 2012 Shayan Javed Lecture 11

20 / 89

Exception

An exception is an event, which occurs during the execution of a program, that disrupts the normal flow of the program’s instructions.

Page 21: COP 3503 FALL 2012 Shayan Javed Lecture 11

21 / 89

Exception Handling in Java

Mechanism for handling exceptions by detecting and responding to them in a systematic, uniform and reliable manner.

Page 22: COP 3503 FALL 2012 Shayan Javed Lecture 11

22 / 89

Exception Handling in Java

Mechanism for handling exceptions by detecting and responding to them in a systematic, uniform and reliable manner.

Any exceptions not handled within the Java program are “caught” by the Java Runtime Environment (JRE)

Page 23: COP 3503 FALL 2012 Shayan Javed Lecture 11

23 / 89

Exception

A method in Java throws Exceptions “Something went wrong”

Page 24: COP 3503 FALL 2012 Shayan Javed Lecture 11

24 / 89

Exception

A method in Java throws Exceptions “Something went wrong”

Exceptions are Objects Every Exception is a subclass of the Exception class

Page 25: COP 3503 FALL 2012 Shayan Javed Lecture 11

25 / 89

Unchecked Exceptions/Errors

LinkageError

Error

AWTError

AWTException

Throwable

ClassNotFoundException

VirtualMachineError

IOException

Exception

RuntimeException

Object

ArithmeticException

NullPointerException

IndexOutOfBoundsException

Several more classes

Several more classes

Several more classes

IllegalArgumentException

Page 26: COP 3503 FALL 2012 Shayan Javed Lecture 11

26 / 89

System Errors

LinkageError

Error

AWTError

AWTException

Throwable

ClassNotFoundException

VirtualMachineError

IOException

Exception

RuntimeException

Object

ArithmeticException

NullPointerException

IndexOutOfBoundsException

Several more classes

Several more classes

Several more classes

IllegalArgumentException

Page 27: COP 3503 FALL 2012 Shayan Javed Lecture 11

27 / 89

System Errors

Thrown by the Java Virtual Machine (JVM)

Page 28: COP 3503 FALL 2012 Shayan Javed Lecture 11

28 / 89

System Errors

Thrown by the Java Virtual Machine (JVM)

Represented by the Error class

Page 29: COP 3503 FALL 2012 Shayan Javed Lecture 11

29 / 89

System Errors

Thrown by the Java Virtual Machine (JVM)

Represented by the Error class

Describes internal system errors

Page 30: COP 3503 FALL 2012 Shayan Javed Lecture 11

30 / 89

System Errors

Thrown by the Java Virtual Machine (JVM)

Represented by the Error class

Describes internal system errors

Rarely occur – if they do you can’t do much other than terminating

Page 31: COP 3503 FALL 2012 Shayan Javed Lecture 11

31 / 89

Runtime Exceptions (Unchecked)

LinkageError

Error

AWTError

AWTException

Throwable

ClassNotFoundException

VirtualMachineError

IOException

Exception

RuntimeException

Object

ArithmeticException

NullPointerException

IndexOutOfBoundsException

Several more classes

Several more classes

Several more classes

IllegalArgumentException

Page 32: COP 3503 FALL 2012 Shayan Javed Lecture 11

32 / 89

Checked Exceptions

LinkageError

Error

AWTError

AWTException

Throwable

ClassNotFoundException

VirtualMachineError

IOException

Exception

RuntimeException

Object

ArithmeticException

NullPointerException

IndexOutOfBoundsException

Several more classes

Several more classes

Several more classes

IllegalArgumentException

Page 33: COP 3503 FALL 2012 Shayan Javed Lecture 11

33 / 89

Checked Exceptions

LinkageError

Error

AWTError

AWTException

Throwable

ClassNotFoundException

VirtualMachineError

IOException

Exception

RuntimeException

Object

ArithmeticException

NullPointerException

IndexOutOfBoundsException

Several more classes

Several more classes

Several more classes

IllegalArgumentException

Need to explicitly deal with Checked Exceptions:

try and catch them, or throw them

Page 34: COP 3503 FALL 2012 Shayan Javed Lecture 11

34 / 89

Exception Handling

Keywords: try some code, catch any Exceptions

Page 35: COP 3503 FALL 2012 Shayan Javed Lecture 11

35 / 89

Exception Handling

Keywords: try some code, catch any Exceptions

or throw an Exception

Page 36: COP 3503 FALL 2012 Shayan Javed Lecture 11

36 / 89

Exception Handling

Keywords: try some code, catch any Exceptions

or throw an Exception

finally execute some code

Page 37: COP 3503 FALL 2012 Shayan Javed Lecture 11

37 / 89

Exception Handling

Java forces you to deal with checked Exceptions

Page 38: COP 3503 FALL 2012 Shayan Javed Lecture 11

38 / 89

Exception Handling

Java forces you to deal with checked Exceptions Two ways to deal with them:

void p1 () { try { riskyMethod(); } catch (Exception ex) { .... }

}

(a)

Page 39: COP 3503 FALL 2012 Shayan Javed Lecture 11

39 / 89

Exception Handling

Java forces you to deal with checked Exceptions Two ways to deal with them:

void p1 () { try { riskyMethod(); } catch (Exception ex) { .... }

}

(a)

void p1 () throws Exception {

riskyMethod();

}

(b)

Page 40: COP 3503 FALL 2012 Shayan Javed Lecture 11

40 / 89

Exception Handling

Remember the clone() method?

Page 41: COP 3503 FALL 2012 Shayan Javed Lecture 11

41 / 89

Exception Handling

Remember the clone() method? Can be written in two ways:

Object clone() { try { return super.clone(); } catch (CloneNotSupportedException ex) { .... }} (a)

Page 42: COP 3503 FALL 2012 Shayan Javed Lecture 11

42 / 89

Exception Handling

Remember the clone() method? Can be written in two ways:

Object clone() { try { return super.clone(); } catch (CloneNotSupportedException ex) { .... }} (a)

Object clone() throws CloneNotSupportedException {

return super.clone();

}

(b)

Page 43: COP 3503 FALL 2012 Shayan Javed Lecture 11

43 / 89

Exception Handling

In the first case, we are catching and handling the Exception

Page 44: COP 3503 FALL 2012 Shayan Javed Lecture 11

44 / 89

Exception Handling

In the first case, we are catching and handling the Exception

In the second case we are throwing it – needs to be caught and handled by the calling method

Page 45: COP 3503 FALL 2012 Shayan Javed Lecture 11

45 / 89

Catching Exceptions A try-catch statement:

try {// Statement(s) which throw Exceptions

} catch (Exception1 exception1) {// Handles Exceptions of type Exception1

} catch (Exception2 exception2) {// Handles Exceptions of type Exception2

} catch (Exception exception) {// Handles Exceptions of type Exception// ALL Exceptions

}

// Any code after the try-catch block

Page 46: COP 3503 FALL 2012 Shayan Javed Lecture 11

46 / 89

Catching Exceptions A try-catch statement:

try {// Statement(s) which throw Exceptions

} catch (CloneNotSupportedException exception1) {// Handles Exceptions of type

CloneNotSupportedException } catch (NullPointerException exception2) {

// Handles Exceptions of type NullPointerException} catch (Exception exception) {

// Handles Exceptions of type Exception// ALL Exceptions

}

// Any code after the try-catch block

Page 47: COP 3503 FALL 2012 Shayan Javed Lecture 11

47 / 89

Catching Exceptions A try-catch statement:

try {Circle clone = circle1.clone();

} catch (CloneNotSupportedException exception1) {// Handles Exceptions of type

CloneNotSupportedException } catch (NullPointerException exception2) {

// Handles Exceptions of type NullPointerException} catch (Exception exception) {

// Handles Exceptions of type Exception// ALL Exceptions

}

// Any code after the try-catch block

Page 48: COP 3503 FALL 2012 Shayan Javed Lecture 11

48 / 89

Catching Exceptions Thrown Exceptions have to be eventually caught

somewhere in your code

Page 49: COP 3503 FALL 2012 Shayan Javed Lecture 11

49 / 89

Exception Information

So an Exception has been caught – what can we do with it?

try {

// Statements which throw Exceptions } catch (Exception exception) {

// ALL Exceptions }

Page 50: COP 3503 FALL 2012 Shayan Javed Lecture 11

50 / 89

Exception Information

Some useful methods in the Throwable class:

Page 51: COP 3503 FALL 2012 Shayan Javed Lecture 11

51 / 89

Exception Information

Some useful methods in the Throwable class: String toString():

Returns a short description of the Exception

Page 52: COP 3503 FALL 2012 Shayan Javed Lecture 11

52 / 89

Exception Information

Some useful methods in the Throwable class: String toString():

Returns a short description of the Exception

String getMessage(): Returns a detailed description of the Exception

Page 53: COP 3503 FALL 2012 Shayan Javed Lecture 11

53 / 89

Exception Information

Some useful methods in the Throwable class: String toString():

Returns a short description of the Exception

String getMessage(): Returns a detailed description of the Exception

void printStackTrace(): Prints the stacktrace information on the console

Page 54: COP 3503 FALL 2012 Shayan Javed Lecture 11

54 / 89

Exception Information Some useful methods in the Throwable class:

void printStackTrace(): Prints the stacktrace information on the console

Sample output:

java.lang.NullPointerException at MyClass.method2(MyClass.java:9) at MyClass.method1(MyClass.java:6) at MyClass.main(MyClass.java:3)

Page 55: COP 3503 FALL 2012 Shayan Javed Lecture 11

55 / 89

Exception Information Example:

java.io.PrintWriter output = null;

try {output = new java.io.PrintWriter(“text.txt”);output.println(“Welcome to Java”);output.close();

}catch (java.io.IOException ex){

System.out.println(ex.toString()); ex.printStackTrace() ;

}

Page 56: COP 3503 FALL 2012 Shayan Javed Lecture 11

56 / 89

Problems Example:

java.io.PrintWriter output = null;

try {output = new java.io.PrintWriter(“text.txt”);output.println(“Welcome to Java”);output.close();

}catch (java.io.IOException ex){

System.out.println(ex.toString()); ex.printStackTrace() ;

}

Must execute output.close() even if Exception occurs

Page 57: COP 3503 FALL 2012 Shayan Javed Lecture 11

57 / 89

Solution

Use the finally clause – for code that must be executed “no matter what”

Page 58: COP 3503 FALL 2012 Shayan Javed Lecture 11

58 / 89

Solution

Use the finally clause – for code that must be executed “no matter what”

try {// Statement(s) which throw Exceptions} catch (Exception1 exception1) {// Handles Exceptions of type Exception1

} catch (Exception exception) {// Handles Exceptions of type Exception} finally {// code executed whether there is an Exception or not

}

Page 59: COP 3503 FALL 2012 Shayan Javed Lecture 11

59 / 89

Solution Example:

java.io.PrintWriter output = null;

try {output = new java.io.PrintWriter(“text.txt”);output.println(“Welcome to Java”);

}catch (java.io.IOException ex){

ex.printStackTrace() ;} finally {

if (output != null) output.close();

}

Page 60: COP 3503 FALL 2012 Shayan Javed Lecture 11

60 / 89

The finally block

Executed when try block is exited in these ways:

Page 61: COP 3503 FALL 2012 Shayan Javed Lecture 11

61 / 89

The finally block

Executed when try block is exited in these ways: After last statement of try block

Page 62: COP 3503 FALL 2012 Shayan Javed Lecture 11

62 / 89

The finally block

Executed when try block is exited in these ways: After last statement of try block

After last statement of the catch block (if an Exception was caught)

Page 63: COP 3503 FALL 2012 Shayan Javed Lecture 11

63 / 89

The finally block

Executed when try block is exited in these ways: After last statement of try block

After last statement of the catch block (if an Exception was caught)

When an Exception is thrown in try but NOT caught

Page 64: COP 3503 FALL 2012 Shayan Javed Lecture 11

64 / 89

The finally block

Executed when try block is exited in these ways: After last statement of try block

After last statement of the catch block (if an Exception was caught)

When an Exception is thrown in try but NOT caught

Executed even if there is a return statement prior to reaching the finally block

Page 65: COP 3503 FALL 2012 Shayan Javed Lecture 11

65 / 89

Throwing Exceptions

If written code could encounter a runtime error:

Page 66: COP 3503 FALL 2012 Shayan Javed Lecture 11

66 / 89

Throwing Exceptions

If written code could encounter a runtime error:

It creates an Exception object and throws it

Page 67: COP 3503 FALL 2012 Shayan Javed Lecture 11

67 / 89

Throwing Exceptions

If written code could encounter a runtime error:

It creates an Exception object and throws it

and must also declare it in the method description

Page 68: COP 3503 FALL 2012 Shayan Javed Lecture 11

68 / 89

Throwing Exceptions

If written code could encounter a runtime error:

It creates an Exception object and throws it

and must also declare it in the method description Only if the Exception is a checked Exception Optional for unchecked

Page 69: COP 3503 FALL 2012 Shayan Javed Lecture 11

69 / 89

Throwing Exceptions

Example:

public void setRadius(double newRadius) { if (newRadius >= 0) radius = newRadius; else throw new IllegalArgumentException( "Radius cannot be negative"); }

Page 70: COP 3503 FALL 2012 Shayan Javed Lecture 11

70 / 89

Throwing Exceptions

Example:OPTIONAL

public void setRadius(double newRadius) throws IllegalArgumentException

{ if (newRadius >= 0) radius = newRadius; else throw new IllegalArgumentException( "Radius cannot be negative"); }

Page 71: COP 3503 FALL 2012 Shayan Javed Lecture 11

71 / 89

Throwing Exceptions

try { Circle c1 = new Circle(5); c1.setRadius(-5);

} catch (IllegalArgumentException ex) {

System.out.println(ex); }

Page 72: COP 3503 FALL 2012 Shayan Javed Lecture 11

72 / 89

Throwing Exceptions

try { Circle c1 = new Circle(5); c1.setRadius(-5);

} catch (IllegalArgumentException ex) {

System.out.println(ex); }

Output:Radius cannot be negative

Page 73: COP 3503 FALL 2012 Shayan Javed Lecture 11

73 / 89

Creating Custom Exceptions

Create custom Exception classes if predefined classes not sufficient

Page 74: COP 3503 FALL 2012 Shayan Javed Lecture 11

74 / 89

Creating Custom Exceptions

Create custom Exception classes if predefined classes not sufficient

To create a custom class: class should extend Exception

Page 75: COP 3503 FALL 2012 Shayan Javed Lecture 11

75 / 89

Creating Custom Exceptions

Create custom Exception classes if predefined classes not sufficient

To create a custom class: class should extend Exception Good practice to add:

A default (empty) constructor A constructor with one String parameter

Page 76: COP 3503 FALL 2012 Shayan Javed Lecture 11

76 / 89

Creating Custom Exceptions

public class InvalidRadiusException extends Exception {private double radius;public InvalidRadiusException() {

super(“Invalid radius!”); }

public InvalidRadiusException(double radius) { super("Invalid radius!”);

this.radius = radius;}public double getRadius() {

return radius; }}

Page 77: COP 3503 FALL 2012 Shayan Javed Lecture 11

77 / 89

Creating Custom Exceptions

Example:

public void setRadius(double newRadius) throws IllegalArgumentException

{ if (newRadius >= 0) radius = newRadius; else throw new IllegalArgumentException( "Radius cannot be negative"); }

Page 78: COP 3503 FALL 2012 Shayan Javed Lecture 11

78 / 89

Creating Custom Exceptions

Example:

public void setRadius(double newRadius) throws InvalidRadiusException

{ if (newRadius >= 0) radius = newRadius; else throw new InvalidRadiusException(radius); }

Page 79: COP 3503 FALL 2012 Shayan Javed Lecture 11

79 / 89

Creating Custom Exceptions

try { Circle c1 = new Circle(5); c1.setRadius(-5);

} catch (IllegalArgumentException ex) {

System.out.println(ex); }

Page 80: COP 3503 FALL 2012 Shayan Javed Lecture 11

80 / 89

Creating Custom Exceptions

try { Circle c1 = new Circle(5); c1.setRadius(-5);

} catch (InvalidRadiusException ex) {

System.out.println(“Invalid Radius: “ + ex.getRadius());

}

Page 81: COP 3503 FALL 2012 Shayan Javed Lecture 11

81 / 89

Creating Custom Exceptions

try { Circle c1 = new Circle(5); c1.setRadius(-5);

} catch (InvalidRadiusException ex) {

System.out.println(“Invalid Radius: “ + ex.getRadius());

}

Output:Invalid Radius: -5.0

Page 82: COP 3503 FALL 2012 Shayan Javed Lecture 11

82 / 89

When to create Custom Exceptions

Use the exception classes in the API whenever possible.

Page 83: COP 3503 FALL 2012 Shayan Javed Lecture 11

83 / 89

When to create Custom Exceptions

Use the exception classes in the API whenever possible.

Write your own custom exception class if you answer yes to one of the following:

Page 84: COP 3503 FALL 2012 Shayan Javed Lecture 11

84 / 89

When to create Custom Exceptions

Use the exception classes in the API whenever possible.

Write your own custom exception class if you answer yes to one of the following: Do you need an exception type that isn’t represented by Java?

Page 85: COP 3503 FALL 2012 Shayan Javed Lecture 11

85 / 89

When to create Custom Exceptions

Use the exception classes in the API whenever possible.

Write your own custom exception class if you answer yes to one of the following: Do you need an exception type that isn’t represented by Java?

Would it help users if they can differentiate your exceptions from those thrown by classes from other vendors?

Page 86: COP 3503 FALL 2012 Shayan Javed Lecture 11

86 / 89

When to create Custom Exceptions

Use the exception classes in the API whenever possible.

Write your own custom exception class if you answer yes to one of the following: Do you need an exception type that isn’t represented by Java?

Would it help users if they can differentiate your exceptions from those thrown by classes from other vendors?

Do you want to pass more than just a string to the exception handler?

Page 87: COP 3503 FALL 2012 Shayan Javed Lecture 11

87 / 89

When to use Exceptions

Use if the event is exception and truly an error

Page 88: COP 3503 FALL 2012 Shayan Javed Lecture 11

88 / 89

When to use Exceptions

Use if the event is exception and truly an error Do not use it to deal with simple, expected

situations Example:

try { System.out.println(refVar.toString());}catch (NullPointerException ex) { System.out.println("refVar is null");}

Page 89: COP 3503 FALL 2012 Shayan Javed Lecture 11

89 / 89

When to use Exceptions

Use if the event is exception and truly an error Do not use it to deal with simple, expected

situations Example:

Replace with:

try { System.out.println(refVar.toString());}catch (NullPointerException ex) { System.out.println("refVar is null");}

if (refVar != null) System.out.println(refVar.toString());else System.out.println("refVar is null");