Presentation is loading. Please wait.

Presentation is loading. Please wait.

Sadegh Aliakbary Sharif University of Technology Fall 2010.

Similar presentations


Presentation on theme: "Sadegh Aliakbary Sharif University of Technology Fall 2010."— Presentation transcript:

1 Sadegh Aliakbary Sharif University of Technology Fall 2010

2 Agenda Exception Handling Fall 2010Sharif University of Technology2

3 Watch This Method public static Integer getYear(String day){ String yearString = day.substring(0,4); int year = Integer.parseInt(yearString); return year; } public static void main(String[] args) { String day = "2010/11/29"; Integer year = getYear(day); System.out.println(year); } Fall 2010Sharif University of Technology3

4 Exceptions What is wrong with it? What if day parameter is not a day representation? day = “salam!” What if day parameter is malformed? Day = “29 Nov 2010” What if day parameter is null? This occasions are called Exception Fall 2010Sharif University of Technology4

5 Handling Exceptions What to do with exceptions? Exit the program Printing the error on console Returning a special value e.g. -1 Fall 2010Sharif University of Technology5

6 Important Note Sometimes the method can’t handle the exception effectively What should a method do when an exception occurs? Exit the program? Suppose you are in a desktop application Excel, Word, a game, … Print on console? edu site A game Fall 2010Sharif University of Technology6

7 Returning a Special Value We can return a special value to report an exception E.g. return null; return -1; return 0; return “”; Why not? Fall 2010Sharif University of Technology7

8 Why not? There is no return value Return type : void There is no special value There are many exceptions Ambiguity Need for documentation Combination of program code and exception code Fall 2010Sharif University of Technology8

9 There is no special value public static int minimum(int[] nums ){ int m = Integer.MAX_VALUE; for (int i : nums) { m = Math.min(m, i); } return m; } int[] array = {1,2,-1}; int minimumFound = minimum(array); Fall 2010Sharif University of Technology9

10 Exception Handling Exception Handling is a framework for handling exceptions It simplifies code Separates business code and exception code Fall 2010Sharif University of Technology10

11 What is an Exception? Exceptional event Error that occurs during runtime Cause normal program flow to be disrupted Examples ? Divide by zero errors Accessing the elements of an array beyond its range Invalid input Hard disk crash Opening a non-existent file Heap memory exhausted Fall 2010Sharif University of Technology11

12 Default Exception Handling Provided by Java runtime Prints out exception description Prints the stack trace Hierarchy of methods where the exception occurred Causes the program to terminate Fall 2010Sharif University of Technology12

13 Example class DivByZero { public static void main(String a[]) { System.out.println(3/0); } Exception in thread "main" java.lang.ArithmeticException: / by zero at exception.Test2.main(Test2.java:19) Fall 2010Sharif University of Technology13

14 What Happens When an Exception Occurs? When an exception occurs within a method The method creates an exception object And hands it off to the runtime system This job is called “throwing an exception” Exception object contains information about the error its type the state of the program when the error occurred Fall 2010Sharif University of Technology14

15 What Happens When an Exception Occurs (2)? The runtime system searches the call stack For a method that contains an exception handler When an appropriate handler is found The runtime system passes the exception to the handler The exception handler catches the exception What if the runtime system can not find an exception handler? Uses the default exception handler Fall 2010Sharif University of Technology15

16 Fall 2010Sharif University of Technology16

17 Fall 2010Sharif University of Technology17

18 Exception Handling in Java public static Integer getYear(String day) { String yearString = day.substring(0, 4); int year = Integer.parseInt(yearString); return year; } public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("Enter a well-formed date: "); String date = scanner.next(); Integer year = getYear(date); System.out.println(year); } Fall 2010Sharif University of Technology18

19 getYear() public static Integer getYear(String day) throws Exception { if (day == null) throw new Exception("null value"); if (day.length() == 0) throw new Exception("empty value"); if (!matchesDateFormat(day)) throw new Exception("malformed value"); String yearString = day.substring(0, 4); int year = Integer.parseInt(yearString); return year; } private static boolean matchesDateFormat(String input) { return input.matches("\\d\\d\\d\\d/\\d\\d/\\d\\d"); } Fall 2010Sharif University of Technology19

20 main() public static void main(String[] args) { Scanner scanner = new Scanner(System.in); boolean ok = false; while (ok == false) { System.out.print("Enter a well-formed date: "); String date = scanner.next(); try { Integer year = getYear(date); System.out.println(year); ok = true; } catch (Exception e) { System.out.println(e.getMessage()); } Fall 2010Sharif University of Technology20

21 Exception Handling Keywords throw throws a new exception throws Declares exception throw try Start a block with exception handling catch Catch the exception Fall 2010Sharif University of Technology21

22 Benefits of Exception Handling Framework Separating Error-Handling code from “regular” business logic code Propagating errors up the call stack Grouping and differentiating error types Fall 2010Sharif University of Technology22

23 Fall 2010Sharif University of Technology23

24 References http://www.javapassion.com/javase/javaexceptions.pdf Fall 2010Sharif University of Technology24


Download ppt "Sadegh Aliakbary Sharif University of Technology Fall 2010."

Similar presentations


Ads by Google