Download presentation
Presentation is loading. Please wait.
Published byMeryl Morris Modified over 9 years ago
2
WARNING These slides are not optimized for printing or exam preparation. These are for lecture delivery only. These slides are made for PowerPoint 2010. They may not show up well on other PowerPoint versions. You can download PowerPoint 2010 viewer from here.here These slides contain a lot of animations. For optimal results, watch in slideshow mode.
3
ARIANE 5 launch
4
Here’s an error message Navigation instructions?
5
Here’s an error message Navigation instructions? Your teammate’s code Your code
6
Your teammate’s code Putting up defences to protect our code. CS2103/T, Lecture 7, Part 3, [Oct 4, 2013]
7
Your code Your teammate’s code Putting up defences to protect our code.
8
Lecture 7: Putting up defences to protect our code.
9
GO!
10
… int size = Config.getSize(); if( 0 < size < 5) setSizeAsSmall(); else setSizeAsBig(); … if( sizeFound()) return readSize(); else return 0; … // size > 0
11
… int size = Config.getSize(); if( 0 < size < 5) setSizeAsSmall(); else setSizeAsBig(); … if( sizeFound()) return readSize(); else return 0; … assert (size > 0)
12
… int size = Config.getSize(); if( 0 < size < 5) setSizeAsSmall(); else setSizeAsBig(); … if( sizeFound()) return readSize(); else return 0; … assert (size > 0) Make your assumptions explicit. Get the runtime to confirm them.
14
GO!
17
What if age is invalid? void processAge(int age); //do stuff with age } bug? Handle or raise an Exception Verify using assertion e.g. assert(isValid(age)) void foo(String fileName); openFile(fileName); } User mishap
18
Handle or raise an Exception Developer User/environment bug? User mishap Verify using assertion e.g. assert(isValid(age))
19
Handle or raise an Exception
20
Handle or raise an Exceptions public void processInput(String[] input) { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
21
Handle or raise an Exceptions public void processInput(String[] input) { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
22
Handle or raise an Exceptions public void processInput(String[] input) { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
23
Handle or raise an Exceptions public void processInput(String[] input) { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
24
Handle or raise an Exceptions public void processInput(String[] input) { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
25
Handle or raise an Exceptions public void processInput(String[] input) { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
26
Handle or raise an Exceptions public void processInput(String[] input) { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
27
Handle or raise an Exceptions public void processInput(String[] input) { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
28
Handle or raise an Exceptions public void processInput(String[] input) { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
29
Handle or raise an Exception public void processInput(String[] input) throws InvalidInputException { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); throw e; } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
30
Handle or raise an Exception public void processInput(String[] input) throws InvalidInputException { try { processArray(input); //do other things } catch (InvalidInputException e) { System.err.println(“Invalid input: " + e.getMessage()); throw e; } public void processArray(String[] array) throws InvalidInputException { if(array.size()==0){ throw new InvalidInputException(“empty array”); } //process array }
31
GO!
33
Your ToDo manager software tries to interact with Google calendar, but finds Google servers are down. This should be handled using, a)Assertions b)Exceptions c)Depends goog {a|b|c} e.g. goog b goog {a|b|c} e.g. goog b 77577
34
GO!
35
My computer crashes when I flush the toilet!
36
… int size = Config.getSize(); // size > 0 if( 0 < size < 5) log(LEVEL_INFO, “Setting size to small”); setSizeAsSmall(); else if( size > 5) setSizeAsBig(); else log(LEVEL_WARN, “size not recognized”); …
39
GO!
42
class Man{ Woman girlfriend; void setGirlFriend(Woman w){ girlfriend = w; } … class Woman{ Man boyfriend; void setBoyFriend(Man m){ boyfriend = m; } … Man harry, ron; Woman hermione; ron.setGirlFriend(hermoine); hermione.setBoyFriend(harry); … ron:Man hermione :Woman harry:Man girlfriend boyfriend
43
42 What do you do when it is green light?
44
Defensive driving can save your life Assume other drivers are idiots
45
Defensive driving can save your life Assume other drivers are idiots coding career coders
46
class Man{ Woman girlfriend; void setGirlFriend(Woman w){ if(girlfriend!=null) girlfriend.breakupWith(this); girlfriend = w; girlfriend.setBoyFriend(this); } …
50
Bertrand Meyer, Design by Contract and the Eiffel Language
52
GO!
53
AssertionsExceptionsLoggingDefensive
54
GO! AssertionsExceptionsLoggingDefensive *some* evidence of each, starting from V0.3
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.