SlideShare a Scribd company logo
1 of 39
Data Structures Using Java 1
Chapter 2
Inheritance and Exception Handling
Data Structures Using Java 2
Chapter Objectives
• Learn about inheritance
• Learn about sub- and superclasses
• Explore how to override the methods of a
superclass
• Examine how constructors of super- and
subclasses work
• Examine abstract classes
• Learn about composition
Data Structures Using Java 3
Chapter Objectives
• Learn about exceptions
• Become aware of exception classes and their
hierarchy
• Learn about checked and unchecked exceptions
• Learn how to handle exceptions within a program
• Examine try/catch blocks
• Discover how to throw and rethrow an exception
Data Structures Using Java 4
Inheritance
• “is-a” relationship
• Single inheritance
– subclass derived from one existing class (superclass)
• Multiple inheritance
– Subclass derived from more than one superclass
– Not supported by Java
– In Java, a class can only extend definition of one class
Data Structures Using Java 5
Inheritance
Data Structures Using Java 6
Inheritance
• Private members of superclass
– private to superclass; cannot be accessed
directly by subclass
• Subclass can override method of superclass;
redefinition applies only to object of
subclass
Data Structures Using Java 7
Inheritance
• To write method definition of subclass to specify
call to public method of superclass
– If subclass overrides public method of superclass, to
specify call to public method of superclass:
super.MethodName(parameter list)
– If subclass does not override public method of
superclass, to specify call to public method of
superclass: MethodName(parameter list)
Data Structures Using Java 8
Defining Constructor of Subclass
• Call to constructor of superclass
– must be first statement
– specified by: super parameter list
Data Structures Using Java 9
The class Object
• Directly or indirectly superclass of every
class in Java
• Public members of class Object can be
overridden/invoked by object of any class
type
Data Structures Using Java 10
The class Object
Data Structures Using Java 11
Objects of Superclasses and
Subclasses
• Cannot automatically make reference variable of
subclass type point to object of superclass
• Dynamic binding: method executed determined at
execution time, not compile time
• Operator instanceof : determines whether
reference variable that points to object is of
particular class type
• ClassCastException thrown if class cast is not
allowed
Data Structures Using Java 12
The Operator instanceof
• Reference of superclass type can point to
objects of its subclass
• Can determine if a reference variable points
to an object using operator instanceof
Data Structures Using Java 13
Abstract Methods and Classes
• Abstract method: method that has only the
heading with no body
– must be declared abstract
• Abstract class: class that is declared with the
reserved word abstract in its heading
Data Structures Using Java 14
Abstract Class
• Can contain instance variables,
constructors, finalizer, abstract and
nonabstract methods
• Cannot instantiate object of abstract class
type; can only declare reference variable
• Can instantiate object of subclass of abstract
class, but only if subclass gives definitions
of all abstract methods of superclass
Data Structures Using Java 15
Composition
• Another way to relate two classes
• One or more members of a class are objects
of another class type
• “has-a” relation between classes
Data Structures Using Java 16
Exception
• Definition: an occurrence of an undesirable
situation that can be detected during
program execution
• Examples
– division by zero
– trying to open an input file that does not exist is
an exception
– an array index that goes out of bounds
Data Structures Using Java 17
Java Exception Hierarchy
Data Structures Using Java 18
The class Throwable
Data Structures Using Java 19
The class Exception and its
Subclasses from java.lang
Data Structures Using Java 20
The class Exception and its
Subclasses from java.util
Data Structures Using Java 21
The class Exception and its
Subclasses from java.io
Data Structures Using Java 22
Java’s Exception Class
• Class Exception
– Subclass of class Throwable
– superclass of classes designed to handle exceptions
• Various types of exceptions
– I/O exceptions
– Number format exceptions
– File not found exceptions
– Array index out of bounds exception
• Various exceptions categorized into separate
classes and contained in various packages
Data Structures Using Java 23
The class Exception and its
Constructors
Data Structures Using Java 24
Java Exception Classes
Data Structures Using Java 25
Exceptions Thrown by Methods
Data Structures Using Java 26
Exceptions Thrown by Methods
Data Structures Using Java 27
Checked Exceptions
• Checked Exception: any exception that can
be analyzed by the compiler
• Example
– IOExceptions
Data Structures Using Java 28
Unchecked Exceptions
• Unchecked Exception: exception that cannot be
analyzed when the program compiles (must be
checked for by programmer)
• Examples
– Division by zero
– Array index out of hounds
• Syntax
– throws ExceptionType1, ExceptionType2, …
*ExceptionType1, ExceptionType2, etc are names of exception
classes
Data Structures Using Java 29
Handling Exceptions within a
Program
• try/catch/finally block used to handle exceptions
within a program
• try block:
– Includes statements that may generate an exception
– Includes statements that should not be executed if an
exception occurs
– followed by zero or more catch blocks
– May or may not be followed by finally block
Data Structures Using Java 30
Handling Exceptions within a
Program
• Catch block:
– heading specifies type of exception it can catch
– contains exception handler; completely handles
exception
– can catch all exceptions of a specific type or all types of
exceptions
– may or may not be followed by a finally block
• Finally block
– Code contained in this block always executes
– try block with no catch block has finally block
Data Structures Using Java 31
Order of Catch Blocks
• If exception in try block caught by first
catch block, reaming catch blocks ignored
• Must be careful about order catch blocks
are listed
Data Structures Using Java 32
Rethrowing and Throwing an
Exception
• Useful when
– Catch block catches exception but is unable to
handle it
– Catch block decides exception should be
handled by calling environment
• Allows programmer to provide exception
handling code in one place
Data Structures Using Java 33
Exception Handling Techniques
• Terminate program
– Output appropriate error message upon termination
• Fix error and continue
– Repeatedly get user input/output appropriate error
message until valid value is entered
• Log error and continue
– Write error messages to file and continue with program
execution
Data Structures Using Java 34
Creating Your Own Exception
Classes
• Exception class you define extends class
Exception or one of its subclasses
• Syntax to throw your own exception object
– throw new ExceptionClassName(messageString);
Data Structures Using Java 35
Programming Example: Grade
Report
• Main algorithm
– Declare variables
– Open input file
– Open output file
– Get number students registered and tuition rate
– Load students’ data
– Print grade reports
Data Structures Using Java 36
Programming Example: Grade
Report
• Components: student, course
• Operations on course
– Set course information
– Print course information
– Show credit hours
– Show course number
– Show grade
Data Structures Using Java 37
Programming Example: Grade
Report
• Operations on student
– Set student information
– Print student information
– Calculate number of credit hours taken
– Calculate GPA
– Calculate billing amount
– Sort the courses according to the course number
Data Structures Using Java 38
Chapter Summary
• Inheritance
– Single and multiple
– Rules and Uses
– Superclasses/subclasses (objects)
– Overriding/overloading methods
• The class Object
– Constructors
– Rules
• Abstract methods and classes
Data Structures Using Java 39
Chapter Summary
• Composition
• Exception
• Checked and Unchecked Exceptions
• Creating your own exception classes
• Exception handling techniques
• Handling exceptions within a program

More Related Content

What's hot (20)

Classes and objects
Classes and objectsClasses and objects
Classes and objects
 
Inner Classes & Multi Threading in JAVA
Inner Classes & Multi Threading in JAVAInner Classes & Multi Threading in JAVA
Inner Classes & Multi Threading in JAVA
 
Statics in java | Constructors | Exceptions in Java | String in java| class 3
Statics in java | Constructors | Exceptions in Java | String in java| class 3Statics in java | Constructors | Exceptions in Java | String in java| class 3
Statics in java | Constructors | Exceptions in Java | String in java| class 3
 
Introducing classes
Introducing classesIntroducing classes
Introducing classes
 
Java(inheritance)
Java(inheritance)Java(inheritance)
Java(inheritance)
 
Java static keyword
Java static keywordJava static keyword
Java static keyword
 
Inner class
Inner classInner class
Inner class
 
Packages
PackagesPackages
Packages
 
Polymorphism
PolymorphismPolymorphism
Polymorphism
 
java-06inheritance
java-06inheritancejava-06inheritance
java-06inheritance
 
Inheritance in JAVA PPT
Inheritance  in JAVA PPTInheritance  in JAVA PPT
Inheritance in JAVA PPT
 
Inner classes
Inner classesInner classes
Inner classes
 
Core java by amit
Core java by amitCore java by amit
Core java by amit
 
Java inheritance
Java inheritanceJava inheritance
Java inheritance
 
Uniform and Safe Metaclass Composition
Uniform and Safe Metaclass CompositionUniform and Safe Metaclass Composition
Uniform and Safe Metaclass Composition
 
Object oriented programming 3 object oriented concepts
Object oriented programming 3 object oriented conceptsObject oriented programming 3 object oriented concepts
Object oriented programming 3 object oriented concepts
 
Inheritance and Polymorphism
Inheritance and PolymorphismInheritance and Polymorphism
Inheritance and Polymorphism
 
Metaprogramming ruby
Metaprogramming rubyMetaprogramming ruby
Metaprogramming ruby
 
JAVA PROGRAMMING – Packages - Stream based I/O
JAVA PROGRAMMING – Packages - Stream based I/O JAVA PROGRAMMING – Packages - Stream based I/O
JAVA PROGRAMMING – Packages - Stream based I/O
 
javainheritance
javainheritancejavainheritance
javainheritance
 

Similar to Chap02 (20)

chapter 5 concepts of object oriented programming
chapter 5 concepts of object oriented programmingchapter 5 concepts of object oriented programming
chapter 5 concepts of object oriented programming
 
SystemVerilog_Classes.pdf
SystemVerilog_Classes.pdfSystemVerilog_Classes.pdf
SystemVerilog_Classes.pdf
 
Java Inheritance - sub class constructors - Method overriding
Java Inheritance - sub class constructors - Method overridingJava Inheritance - sub class constructors - Method overriding
Java Inheritance - sub class constructors - Method overriding
 
Java chapter 5
Java chapter 5Java chapter 5
Java chapter 5
 
Abstraction in java.pptx
Abstraction in java.pptxAbstraction in java.pptx
Abstraction in java.pptx
 
Java
JavaJava
Java
 
OCP Java (OCPJP) 8 Exam Quick Reference Card
OCP Java (OCPJP) 8 Exam Quick Reference CardOCP Java (OCPJP) 8 Exam Quick Reference Card
OCP Java (OCPJP) 8 Exam Quick Reference Card
 
Introduction to OOP with java
Introduction to OOP with javaIntroduction to OOP with java
Introduction to OOP with java
 
Inheritance and interface
Inheritance and interfaceInheritance and interface
Inheritance and interface
 
Object oriented programming in java
Object oriented programming in javaObject oriented programming in java
Object oriented programming in java
 
Unit 4
Unit 4Unit 4
Unit 4
 
Java lec class, objects and constructors
Java lec class, objects and constructorsJava lec class, objects and constructors
Java lec class, objects and constructors
 
5. OBJECT ORIENTED PROGRAMMING USING JAVA - INHERITANCE.ppt
5. OBJECT ORIENTED PROGRAMMING USING JAVA - INHERITANCE.ppt5. OBJECT ORIENTED PROGRAMMING USING JAVA - INHERITANCE.ppt
5. OBJECT ORIENTED PROGRAMMING USING JAVA - INHERITANCE.ppt
 
DAY_1.4.pptx
DAY_1.4.pptxDAY_1.4.pptx
DAY_1.4.pptx
 
Unit 3
Unit 3Unit 3
Unit 3
 
PPT Lecture-1.4.pptx
PPT Lecture-1.4.pptxPPT Lecture-1.4.pptx
PPT Lecture-1.4.pptx
 
Java Programming Fundamentals
Java Programming Fundamentals Java Programming Fundamentals
Java Programming Fundamentals
 
core_java.ppt
core_java.pptcore_java.ppt
core_java.ppt
 
OOPS Characteristics
OOPS CharacteristicsOOPS Characteristics
OOPS Characteristics
 
Java session2
Java session2Java session2
Java session2
 

More from Jotham Gadot

Database using oracle 10g
Database using oracle 10gDatabase using oracle 10g
Database using oracle 10gJotham Gadot
 
C++ beginner's guide ch08
C++ beginner's guide ch08C++ beginner's guide ch08
C++ beginner's guide ch08Jotham Gadot
 
01 introduction-to-computers
01 introduction-to-computers01 introduction-to-computers
01 introduction-to-computersJotham Gadot
 
Fundamentals of Database ppt ch04
Fundamentals of Database ppt ch04Fundamentals of Database ppt ch04
Fundamentals of Database ppt ch04Jotham Gadot
 
Fundamentals of Database ppt ch02
Fundamentals of Database ppt ch02Fundamentals of Database ppt ch02
Fundamentals of Database ppt ch02Jotham Gadot
 
Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01Jotham Gadot
 
Fundamentals of Database ppt ch03
Fundamentals of Database ppt ch03Fundamentals of Database ppt ch03
Fundamentals of Database ppt ch03Jotham Gadot
 
Opeating system programs
Opeating system programsOpeating system programs
Opeating system programsJotham Gadot
 

More from Jotham Gadot (11)

Research gadot
Research gadotResearch gadot
Research gadot
 
Auto cad manual
Auto cad manualAuto cad manual
Auto cad manual
 
Database using oracle 10g
Database using oracle 10gDatabase using oracle 10g
Database using oracle 10g
 
Case study 2
Case study 2Case study 2
Case study 2
 
C++ beginner's guide ch08
C++ beginner's guide ch08C++ beginner's guide ch08
C++ beginner's guide ch08
 
01 introduction-to-computers
01 introduction-to-computers01 introduction-to-computers
01 introduction-to-computers
 
Fundamentals of Database ppt ch04
Fundamentals of Database ppt ch04Fundamentals of Database ppt ch04
Fundamentals of Database ppt ch04
 
Fundamentals of Database ppt ch02
Fundamentals of Database ppt ch02Fundamentals of Database ppt ch02
Fundamentals of Database ppt ch02
 
Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01
 
Fundamentals of Database ppt ch03
Fundamentals of Database ppt ch03Fundamentals of Database ppt ch03
Fundamentals of Database ppt ch03
 
Opeating system programs
Opeating system programsOpeating system programs
Opeating system programs
 

Recently uploaded

Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 

Recently uploaded (20)

Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 

Chap02

  • 1. Data Structures Using Java 1 Chapter 2 Inheritance and Exception Handling
  • 2. Data Structures Using Java 2 Chapter Objectives • Learn about inheritance • Learn about sub- and superclasses • Explore how to override the methods of a superclass • Examine how constructors of super- and subclasses work • Examine abstract classes • Learn about composition
  • 3. Data Structures Using Java 3 Chapter Objectives • Learn about exceptions • Become aware of exception classes and their hierarchy • Learn about checked and unchecked exceptions • Learn how to handle exceptions within a program • Examine try/catch blocks • Discover how to throw and rethrow an exception
  • 4. Data Structures Using Java 4 Inheritance • “is-a” relationship • Single inheritance – subclass derived from one existing class (superclass) • Multiple inheritance – Subclass derived from more than one superclass – Not supported by Java – In Java, a class can only extend definition of one class
  • 5. Data Structures Using Java 5 Inheritance
  • 6. Data Structures Using Java 6 Inheritance • Private members of superclass – private to superclass; cannot be accessed directly by subclass • Subclass can override method of superclass; redefinition applies only to object of subclass
  • 7. Data Structures Using Java 7 Inheritance • To write method definition of subclass to specify call to public method of superclass – If subclass overrides public method of superclass, to specify call to public method of superclass: super.MethodName(parameter list) – If subclass does not override public method of superclass, to specify call to public method of superclass: MethodName(parameter list)
  • 8. Data Structures Using Java 8 Defining Constructor of Subclass • Call to constructor of superclass – must be first statement – specified by: super parameter list
  • 9. Data Structures Using Java 9 The class Object • Directly or indirectly superclass of every class in Java • Public members of class Object can be overridden/invoked by object of any class type
  • 10. Data Structures Using Java 10 The class Object
  • 11. Data Structures Using Java 11 Objects of Superclasses and Subclasses • Cannot automatically make reference variable of subclass type point to object of superclass • Dynamic binding: method executed determined at execution time, not compile time • Operator instanceof : determines whether reference variable that points to object is of particular class type • ClassCastException thrown if class cast is not allowed
  • 12. Data Structures Using Java 12 The Operator instanceof • Reference of superclass type can point to objects of its subclass • Can determine if a reference variable points to an object using operator instanceof
  • 13. Data Structures Using Java 13 Abstract Methods and Classes • Abstract method: method that has only the heading with no body – must be declared abstract • Abstract class: class that is declared with the reserved word abstract in its heading
  • 14. Data Structures Using Java 14 Abstract Class • Can contain instance variables, constructors, finalizer, abstract and nonabstract methods • Cannot instantiate object of abstract class type; can only declare reference variable • Can instantiate object of subclass of abstract class, but only if subclass gives definitions of all abstract methods of superclass
  • 15. Data Structures Using Java 15 Composition • Another way to relate two classes • One or more members of a class are objects of another class type • “has-a” relation between classes
  • 16. Data Structures Using Java 16 Exception • Definition: an occurrence of an undesirable situation that can be detected during program execution • Examples – division by zero – trying to open an input file that does not exist is an exception – an array index that goes out of bounds
  • 17. Data Structures Using Java 17 Java Exception Hierarchy
  • 18. Data Structures Using Java 18 The class Throwable
  • 19. Data Structures Using Java 19 The class Exception and its Subclasses from java.lang
  • 20. Data Structures Using Java 20 The class Exception and its Subclasses from java.util
  • 21. Data Structures Using Java 21 The class Exception and its Subclasses from java.io
  • 22. Data Structures Using Java 22 Java’s Exception Class • Class Exception – Subclass of class Throwable – superclass of classes designed to handle exceptions • Various types of exceptions – I/O exceptions – Number format exceptions – File not found exceptions – Array index out of bounds exception • Various exceptions categorized into separate classes and contained in various packages
  • 23. Data Structures Using Java 23 The class Exception and its Constructors
  • 24. Data Structures Using Java 24 Java Exception Classes
  • 25. Data Structures Using Java 25 Exceptions Thrown by Methods
  • 26. Data Structures Using Java 26 Exceptions Thrown by Methods
  • 27. Data Structures Using Java 27 Checked Exceptions • Checked Exception: any exception that can be analyzed by the compiler • Example – IOExceptions
  • 28. Data Structures Using Java 28 Unchecked Exceptions • Unchecked Exception: exception that cannot be analyzed when the program compiles (must be checked for by programmer) • Examples – Division by zero – Array index out of hounds • Syntax – throws ExceptionType1, ExceptionType2, … *ExceptionType1, ExceptionType2, etc are names of exception classes
  • 29. Data Structures Using Java 29 Handling Exceptions within a Program • try/catch/finally block used to handle exceptions within a program • try block: – Includes statements that may generate an exception – Includes statements that should not be executed if an exception occurs – followed by zero or more catch blocks – May or may not be followed by finally block
  • 30. Data Structures Using Java 30 Handling Exceptions within a Program • Catch block: – heading specifies type of exception it can catch – contains exception handler; completely handles exception – can catch all exceptions of a specific type or all types of exceptions – may or may not be followed by a finally block • Finally block – Code contained in this block always executes – try block with no catch block has finally block
  • 31. Data Structures Using Java 31 Order of Catch Blocks • If exception in try block caught by first catch block, reaming catch blocks ignored • Must be careful about order catch blocks are listed
  • 32. Data Structures Using Java 32 Rethrowing and Throwing an Exception • Useful when – Catch block catches exception but is unable to handle it – Catch block decides exception should be handled by calling environment • Allows programmer to provide exception handling code in one place
  • 33. Data Structures Using Java 33 Exception Handling Techniques • Terminate program – Output appropriate error message upon termination • Fix error and continue – Repeatedly get user input/output appropriate error message until valid value is entered • Log error and continue – Write error messages to file and continue with program execution
  • 34. Data Structures Using Java 34 Creating Your Own Exception Classes • Exception class you define extends class Exception or one of its subclasses • Syntax to throw your own exception object – throw new ExceptionClassName(messageString);
  • 35. Data Structures Using Java 35 Programming Example: Grade Report • Main algorithm – Declare variables – Open input file – Open output file – Get number students registered and tuition rate – Load students’ data – Print grade reports
  • 36. Data Structures Using Java 36 Programming Example: Grade Report • Components: student, course • Operations on course – Set course information – Print course information – Show credit hours – Show course number – Show grade
  • 37. Data Structures Using Java 37 Programming Example: Grade Report • Operations on student – Set student information – Print student information – Calculate number of credit hours taken – Calculate GPA – Calculate billing amount – Sort the courses according to the course number
  • 38. Data Structures Using Java 38 Chapter Summary • Inheritance – Single and multiple – Rules and Uses – Superclasses/subclasses (objects) – Overriding/overloading methods • The class Object – Constructors – Rules • Abstract methods and classes
  • 39. Data Structures Using Java 39 Chapter Summary • Composition • Exception • Checked and Unchecked Exceptions • Creating your own exception classes • Exception handling techniques • Handling exceptions within a program