Presentation is loading. Please wait.

Presentation is loading. Please wait.

C OMP 401 E XCEPTIONS -R EMAINDER Instructor: Prasun Dewan.

Similar presentations


Presentation on theme: "C OMP 401 E XCEPTIONS -R EMAINDER Instructor: Prasun Dewan."— Presentation transcript:

1

2 C OMP 401 E XCEPTIONS -R EMAINDER Instructor: Prasun Dewan

3 2 static int numberOfInputLines(String[] args) throws AMissingArgumentException { try { return Integer.parseInt(args[0]); } catch (ArrayIndexOutOfBoundsException e) { throw new AMissingArgumentException("Missing first argument"); } catch (NumberFormatException e) { System.out.println("Non number argument. Returning 0."); return 0; } E XCEPTIONS E XAMPLE (R EVISED AFTER A UDIO R ECORDING ) How to determine how long the method takes?

4 3 static int numberOfInputLines(String[] args) throws AMissingArgumentException { long startTime = System.currentTimeMillis(); try { int retVal = Integer.parseInt(args[0]); System.out.println(System.currentTimeMillis() - startTime); return retVal; } catch (ArrayIndexOutOfBoundsException e) { System.out.println(System.currentTimeMillis() - startTime); AMissingArgumentException missingArgumentException = new AMissingArgumentException("Missing first argument"); throw missingArgumentException; } catch (NumberFormatException e) { System.out.println("Non number argument. Returning 0."); System.out.println(System.currentTimeMillis() - startTime); return 0; } S YSTEM. CURRENT T IME M ILLS () (R EVISED AFTER A UDIO R ECORDING ) Code duplication

5 4 static int numberOfInputLines(String[] args) throws AMissingArgumentException { long startTime = System.currentTimeMillis(); try { return Integer.parseInt(args[0]); } catch (ArrayIndexOutOfBoundsException e) { System.out.println(System.currentTimeMillis() - startTime); throw new AMissingArgumentException("Missing first argument"); } catch (NumberFormatException e) { System.out.println("Non number argument. Returning 0."); return 0; } finally { System.out.println(System.currentTimeMillis() - startTime); } F INALLY All paths that lead from try block end up in finally. Finally executed after the try block and before the code following the try block Finally without catch?

6 5 public static int factorial(int n) { System.out.println("Started factorial:"+ n); try { if (n <= 1) return 1; return n * factorial(n-1); } finally { System.out.println("Ended factorial:" + n); } T RY AND F INALLY WITHOUT E XCEPTIONS All paths that lead from try block end up in finally. Finally executed after the try block and before the code following the try block Finally and Postconditions?

7 6 public boolean preSetWeight (double newWeight) { return newWeight > 0; } public void setWeight(double newWeight) { assert preSetWeight(newWeight); try { if (!preSetWeight(newWeight)) return; weight = newWeight; } finally { assert preSetWeight(newWeight); // invariant – post and pre condition } F INALLY FOR P OST C ONDITIONS AND I NVARIANTS

8 7 try { for (int i = 0; i < list.length; i++) { System.out.println((String) list[i]); } } catch (ClassCastException e) { System.out.println(e); } I NTRA - METHOD PROPAGATION for (int i = 0; i < list.length; i++) { try { System.out.println((String) list[i]); } catch (ClassCastException e) { System.out.println(e); } println terminated and exception propagated to enclosing loop, which is also terminated, and catch executed Println terminated, catch executed, and loop continues static Object[] list = {5, "hello", "goodbye" };

9 8 T ERMINATING P ROGRAM VS. C ONTINUING Independent errors can be collected Scanning: int 5a = 50 Dependent errors cannot be: Parsing: 5 + 2 4 / - 2

10 9 T RY C ATCH S EMANTICS A try catch block has One try block One or more parameterized catch blocks Zero or one finally block When an exception occurs in a try block Remaining code in the try block is abandoned The first catch block that can handle the exception is executed The try catch block terminates when The try block executes successfully without exception A catch block finishes execution Which may throw its own exceptions that may be caught or not through try blocks The finally block is called after termination of the try catch block and before the statement following the try catch block All paths from the associated try catch block lead to it

11 10 try { for (;;) { String nextLine = input.readLine(); if (".".equals(nextLine)) break; System.out.println(Integer.parseInt(nextLine)); } } catch (Exception e) { e.printStackTrace(); } C ATCHING E XPECTED E VENTS Better style Less efficient, extra check Better style trumps over efficiency try { for (;;) { System.out.println(Integer.parseInt(input.readLine())); } } catch (Exception e) { } Differentiating between expected and unexpected events

12 11 C HECKED E XCEPTION R EVIEW Checked exceptions Uncaught exceptions must be acknowledged

13 12 C ATCHING VS. A CKNOWLEDGING static void echoLines (int numberOfInputLines) { try { for (int inputNum = 0;inputNum < numberOfInputLines;inputNum++) System.out.println(input.readLine()); }catch (IOException e) { System.out.println("Did not input " + numberOfInputLines + " input strings before input was closed. "); System.exit(-1); } static void echoLines (int numberOfInputLines) throws IOException { for (int inputNum = 0;inputNum < numberOfInputLines;inputNum++) System.out.println(input.readLine()); } static void echoLines (int numberOfInputLines) { for (int inputNum = 0;inputNum < numberOfInputLines;inputNum++) System.out.println(input.readLine()); } static void echoLines (int numberOfInputLines) throws IOException { try { for (int inputNum = 0;inputNum < numberOfInputLines;inputNum++) System.out.println(input.readLine()); }catch (IOException e) { System.out.println("Did not input " + numberOfInputLines + " input strings before input was closed. "); System.exit(-1); } Allowed as caller will still work, though it will have extra handling In real-life, analogous rules exist

14 13 R EAL L IFE A NALOGY Should overstate rather than understate bad side effect Dizziness, headache Should overstate rather than understate bad side effect Dizziness, headache If you are bad, you should not say you are good. People will be disappointed If you are good, you can say you are bad You don’t let people down If you are bad, you should not say you are good. People will be disappointed If you are good, you can say you are bad You don’t let people down Makes sense if there is some uncertainty

15 14 W HY A LLOW F ALSE P OSITIVES static void echoLines (int numberOfInputLines) throws IOException { try { for (int inputNum = 0;inputNum < numberOfInputLines;inputNum++) System.out.println(input.readLine()); }catch (IOException e) { System.out.println("Did not input " + numberOfInputLines + " input strings before input was closed. "); System.exit(-1); } Uncertainty in this case? No path can lead to an IO exception In general, Java cannot tell if an exception throwing path is taken Also method body may evolve (from stub to full implementation)

16 15 I NTERFACE A CKS B UT N OT C LASS public void echoLines(int numberOfInputLines)throws IOException public void echoLines (int numberOfInputLines) { try { for (int inputNum = 0;inputNum < numberOfInputLines;inputNum++) System.out.println(input.readLine()); }catch (IOException e) { System.out.println("Did not input " + numberOfInputLines + " input strings before input was closed. "); System.exit(-1); } In instance methods, must also consider variation of a method header

17 16 I NSTANCE M ETHOD VARIATIONS Method header Method implementation 2 Method implementation 1

18 17 I NTERFACE I NSTANCE M ETHOD V ARIATIONS Method header Method implementation 2 Method implementation 1 Class 1 Class 2 Interface Throws exception 1 Acknowledge exception union (exception 1 and exception 2 ) Throws exception 2

19 18 R EAL L IFE A NALOGY A car used by experienced drivers could have this sign without doing harm.

20 19 C AR D RIVEN BY E XPERIENCED AND N EW DRIVER Car Experienced Driver Student Driver New Driver Warning

21 20 M EDICINE USED BY R EACTIVE AND N ON R EACTIVE P ERSON Medicine Person 2 Person 1 Gets Dizzy

22 21 I NSTANCE M ETHOD V ARIATIONS T HROWING D IFFERENT E XCEPTIONS Method Header Method implementation 2 Method implementation 1 Throws exception 1 Acknowledge exception union (exception 1 and exception 2 ) Throws exception 2

23 22 E XCEPTIONS Support typed errors Provide a way to customize error handling By default Java will terminate program Allows more efficient error processing Allows separation of error-handling and normal- processing code Allows error handling and error detection to be in separate classes and methods Without passing legal non erroneous values (null/-1) Allows separate classes to provide error UI

24 23 E XCEPTIONS Errors may be internal or external Exceptions allow custom error handling to be done while following software engineering principles Try and catch blocks allow programmers to easily separate error handling and non error handling code Sometimes error handing should be distributed among error detecting method and its callers Need a way for error information to be passed to caller, that is, propagate error information’ Checked and unchecked exceptions


Download ppt "C OMP 401 E XCEPTIONS -R EMAINDER Instructor: Prasun Dewan."

Similar presentations


Ads by Google