SlideShare a Scribd company logo
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
C HA PT E R 9
Inheritance
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Topics
What Is Inheritance?
Calling the Superclass Constructor
Overriding Superclass Methods
Protected Members
Classes that Inherit from Subclasses
The Object Class
Polymorphism
Abstract Classes and Abstract Methods
Interfaces
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
What is Inheritance?
Generalization vs. Specialization
Real-life objects are typically specialized versions of
other more general objects.
The term “insect” describes a very general type of
creature with numerous characteristics.
Grasshoppers and bumblebees are insects
They share the general characteristics of an insect.
However, they have special characteristics of their
own.
grasshoppers have a jumping ability, and
bumblebees have a stinger.
Grasshoppers and bumblebees are specialized
versions of an insect.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Inheritance
Insect
GrasshopperBumbleBee
Contains those attributes
and methods that are
shared by all insects.
Contains those attributes and
methods that specific to a
Bumble Bee.
Contains those attributes and
methods that are specific to a
Grasshopper.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
The “is a” Relationship
The relationship between a superclass and an
inherited class is called an “is a” relationship.
A grasshopper “is a” insect.
A poodle “is a” dog.
A car “is a” vehicle.
A specialized object has:
all of the characteristics of the general object, plus
additional characteristics that make it special.
In object-oriented programming, inheritance is used
to create an “is a” relationship among classes.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
The “is a” Relationship
We can extend the capabilities of a class.
Inheritance involves a superclass and a subclass.
The superclass is the general class and
the subclass is the specialized class.
The subclass is based on, or extended from, the
superclass.
Superclasses are also called base classes, and
subclasses are also called derived classes.
The relationship of classes can be thought of as
parent classes and child classes.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Inheritance
The subclass inherits fields and methods
from the superclass without any of them
being rewritten.
New fields and methods may be added to the
subclass.
The Java keyword, extends, is used on the
class header to define the subclass.
public class FinalExam extends GradedActivity
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
The GradedActivity Example
Example:
– GradedActivity.java,
– GradeDemo.java,
– FinalExam.java,
– FinalExamDemo.java
GradedActivity
- score : double
+ setScore(s : double) : void
+ getScore() : double
+ getGrade() : char
FinaExam
- numQuestions : int
- pointsEach : double
- numMissed : int
+ FinalExam(questions : int,
missed : int)
+ getPointsEach() : double
+ getNumMissed() : int
Contains those attributes and methods
that are shared by all graded activities.
Contains those attributes and methods
that are specific to the FinalExam
class.
Inherits all non-private attributes and
methods from the GradedActivity
class.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Inheritance, Fields and
Methods
Members of the superclass that are marked
private:
are not inherited by the subclass,
exist in memory when the object of the subclass is
created
may only be accessed from the subclass by public
methods of the superclass.
Members of the superclass that are marked
public:
are inherited by the subclass, and
may be directly accessed from the subclass.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Inheritance, Fields and
Methods
When an instance of the subclass is created, the
non-private methods of the superclass are available
through the subclass object.
FinalExam exam = new FinalExam();
exam.setScore(85.0);
System.out.println("Score = "
+ exam.getScore());
Non-private methods and fields of the superclass are
available in the subclass.
setScore(newScore);
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Inheritance and Constructors
Constructors are not inherited.
When a subclass is instantiated, the
superclass default constructor is
executed first.
Example:
SuperClass1.java
SubClass1.java
ConstructorDemo1.java
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
The Superclass’s Constructor
The super keyword refers to an object’s
superclass.
The superclass constructor can be explicitly
called from the subclass by using the super
keyword.
Example:
SuperClass2.java, SubClass2.java, ConstructorDemo2.java
Rectangle.java, Cube.java, CubeDemo.java
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Calling The Superclass
Constructor
If a parameterized constructor is defined in
the superclass,
the superclass must provide a no-arg
constructor, or
subclasses must provide a constructor, and
subclasses must call a superclass
constructor.
Calls to a superclass constructor must be the
first java statement in the subclass
constructors.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Overriding Superclass
Methods
A subclass may have a method with the
same signature as a superclass
method.
The subclass method overrides the
superclass method.
This is known as method overriding.
Example:
GradedActivity.java, CurvedActivity.java,
CurvedActivityDemo.java
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Overriding Superclass
Methods
GradedActivity
- score : double
+ setScore(s : double) : void
+ getScore() : double
+ getGrade() : char
CurvedActivity
- rawScore : double
- percentage : double
+ CurvedActivity
(percent : double)
+ setScore(s : double) : void
+ getRawScore() : double
+ getPercentage() : double
This method is a more specialized
version of the setScore method in
the superclass, GradedActivity.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Overriding Superclass
Methods
Recall that a method’s signature consists of:
the method’s name
the data types method’s parameters in the
order that they appear.
A subclass method that overrides a
superclass method must have the same
signature as the superclass method.
An object of the subclass invokes the
subclass’s version of the method, not the
superclass’s.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Overriding Superclass
Methods
An subclass method can call the overridden
superclass method via the super keyword.
super.setScore(rawScore * percentage);
There is a distinction between overloading a
method and overriding a method.
Overloading is when a method has the same
name as one or more other methods, but with
a different signature.
When a method overrides another method,
however, they both have the same signature.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Overriding Superclass
Methods
Both overloading and overriding can
take place in an inheritance
relationship.
Overriding can only take place in an
inheritance relationship.
Example:
SuperClass3.java,
SubClass3.java,
ShowValueDemo.java
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Preventing a Method from Being
Overridden
The final modifier will prevent the
overriding of a superclass method in a
subclass.
public final void message()
If a subclass attempts to override a final
method, the compiler generates an error.
This ensures that a particular superclass
method is used by subclasses rather
than a modified version of it.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Protected Members
Protected members of class:
may be accessed by methods in a subclass, and
by methods in the same package as the class.
Java provides a third access specification, protected.
A protected member’s access is somewhere between
private and public.
Example:
GradedActivity2.java
FinalExam2.java
ProtectedDemo.java
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Protected Members
Using protected instead of private makes some
tasks easier.
However, any class that is derived from the class, or
is in the same package, has unrestricted access to
the protected member.
It is always better to make all fields private and then
provide public methods for accessing those fields.
If no access specifier for a class member is provided,
the class member is given package access by default.
Any method in the same package may access the
member.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Access Specifiers
Access
Modifier
Accessible to a subclass inside
the same package?
Accessible to all other classes
inside the same package?
default
(no modifier)
Yes Yes
Public Yes Yes
Protected Yes Yes
Private No No
Access
Modifier
Accessible to a subclass
outside the package?
Accessible to all other classes
outside the package?
default
(no modifier)
No No
Public Yes Yes
Protected Yes No
Private No No
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Chains of Inheritance
A superclass can also be derived from another class.
Object
PassFailActivity
PassFailExam
GradedActivity
Example:
GradedActivity.java
PassFailActivity.java
PassFailExam.java
PassFailExamDemo.java
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Chains of Inheritance
Classes often are depicted graphically in a
class hierarchy.
A class hierarchy shows the inheritance
relationships between classes.
PassFailActivity
PassFailExam
GradedActivity
FinalExam
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
The Object Class
All Java classes are directly or indirectly
derived from a class named Object.
Object is in the java.lang package.
Any class that does not specify the extends
keyword is automatically derived from the
Object class.
public class MyClass
{
//this class is derived from Object.
}
Ultimately, every class is derived from the
Object class.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
The Object Class
Because every class is directly or indirectly derived
from the Object class:
every class inherits the Object class’s members.
example: toString and equals.
In the Object class, the toString method returns a
string containing the object’s class name and a hash
of its memory address.
The equals method accepts the address of an
object as its argument and returns true if it is the
same as the calling object’s address.
Example: ObjectMethods.java
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Polymorphism
A reference variable can reference objects of classes
that are derived from the variable’s class.
GradedActivity exam;
We can use the exam variable to reference a
GradedActivity object.
exam = new GradedActivity();
The GradedActivity class is also used as the
superclass for the FinalExam class.
An object of the FinalExam class is a
GradedActivity object.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Polymorphism
A GradedActivity variable can be used to reference a
FinalExam object.
GradedActivity exam = new FinalExam(50, 7);
This statement creates a FinalExam object and stores the
object’s address in the exam variable.
This is an example of polymorphism.
The term polymorphism means the ability to take many forms.
In Java, a reference variable is polymorphic because it can
reference objects of types different from its own, as long as
those types are subclasses of its type.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Polymorphism
Other legal polymorphic references:
GradedActivity exam1 = new FinalExam(50, 7);
GradedActivity exam2 = new PassFailActivity(70);
GradedActivity exam3 = new PassFailExam(100, 10, 70);
The GradedActivity class has three methods: setScore,
getScore, and getGrade.
A GradedActivity variable can be used to call only those three
methods.
GradedActivity exam = new PassFailExam(100, 10, 70);
System.out.println(exam.getScore()); // This works.
System.out.println(exam.getGrade()); // This works.
System.out.println(exam.getPointsEach()); // ERROR!
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Polymorphism and Dynamic
Binding
If the object of the subclass has overridden a
method in the superclass:
If the variable makes a call to that method the
subclass’s version of the method will be run.
GradedActivity exam = new PassFailActivity(60);
exam.setScore(70);
System.out.println(exam.getGrade());
Java performs dynamic binding or late binding when
a variable contains a polymorphic reference.
The Java Virtual Machine determines at runtime
which method to call, depending on the type of
object that the variable references.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Polymorphism
It is the object’s type, rather than the
reference type, that determines which
method is called.
Example:
Polymorphic.java
You cannot assign a superclass object
to a subclass reference variable.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Abstract Classes
An abstract class cannot be instantiated, but other
classes are derived from it.
An Abstract class serves as a superclass for other
classes.
The abstract class represents the generic or abstract
form of all the classes that are derived from it.
A class becomes abstract when you place the abstract
key word in the class definition.
public abstract class ClassName
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Abstract Methods
An abstract method has no body and must be
overridden in a subclass.
An abstract method is a method that appears
in a superclass, but expects to be overridden
in a subclass.
An abstract method has only a header and no
body.
AccessSpecifier abstract ReturnType MethodName(ParameterList);
Example:
Student.java, CompSciStudent.java, CompSciStudentDemo.java
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Abstract Methods
Notice that the key word abstract appears
in the header, and that the header ends with
a semicolon.
public abstract void setValue(int value);
Any class that contains an abstract method
is automatically abstract.
If a subclass fails to override an abstract
method, a compiler error will result.
Abstract methods are used to ensure that a
subclass implements the method.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Interfaces
An interface is similar to an abstract class that has all
abstract methods.
It cannot be instantiated, and
all of the methods listed in an interface must be written
elsewhere.
The purpose of an interface is to specify behavior for
other classes.
An interface looks similar to a class, except:
the keyword interface is used instead of the
keyword class, and
the methods that are specified in an interface have no
bodies, only headers that are terminated by
semicolons.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Interfaces
The general format of an interface
definition:
public interface InterfaceName
{
(Method headers...)
}
All methods specified by an interface are public by
default.
A class can implement one or more interfaces.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Interfaces
If a class implements an interface, it
uses the implements keyword in the
class header.
public class FinalExam3 extends
GradedActivity implements Relatable
Example:
GradedActivity.java
Relatable.java
FinalExam3.java
InterfaceDemo.java
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Fields in Interfaces
An interface can contain field declarations:
all fields in an interface are treated as final and static.
Because they automatically become final, you must
provide an initialization value.
public interface Doable
{
int FIELD1 = 1, FIELD2 = 2;
(Method headers...)
}
In this interface, FIELD1 and FIELD2 are final
static int variables.
Any class that implements this interface has access
to these variables.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Implementing Multiple
Interfaces
A class can be derived from only one superclass.
Java allows a class to implement multiple interfaces.
When a class implements multiple interfaces, it must
provide the methods specified by all of them.
To specify multiple interfaces in a class definition,
simply list the names of the interfaces, separated by
commas, after the implements key word.
public class MyClass implements Interface1,
Interface2,
Interface3
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Interfaces in UML
GradedActivity
RelatableFinalExam3
A dashed line with an arrow
indicates implementation of an
interface.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Polymorphism with Interfaces
Java allows you to create reference variables
of an interface type.
An interface reference variable can reference
any object that implements that interface,
regardless of its class type.
This is another example of polymorphism.
Example:
RetailItem.java
CompactDisc.java
DvdMovie.java
PolymorphicInterfaceDemo.java
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Polymorphism with Interfaces
In the example code, two RetailItem reference
variables, item1 and item2, are declared.
The item1 variable references a CompactDisc
object and the item2 variable references a
DvdMovie object.
When a class implements an interface, an
inheritance relationship known as interface
inheritance is established.
a CompactDisc object is a RetailItem, and
a DvdMovie object is a RetailItem.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley
Polymorphism with Interfaces
A reference to an interface can point to any class
that implements that interface.
You cannot create an instance of an interface.
RetailItem item = new RetailItem(); // ERROR!
When an interface variable references an object:
only the methods declared in the interface are
available,
explicit type casting is required to access the other
methods of an object referenced by an interface
reference.

More Related Content

PPT
Eo gaddis java_chapter_09_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_06_Classes and Objects
Gina Bullock
 
PPT
Inheritance and Polymorphism
BG Java EE Course
 
PPT
Eo gaddis java_chapter_08_5e
Gina Bullock
 
PPTX
Java Inheritance - sub class constructors - Method overriding
NithyaN19
 
PPT
Unit 3 Java
arnold 7490
 
PPT
OOPs Lecture 2
Abbas Ajmal
 
PPTX
Inheritance in java
HarshitaAshwani
 
Eo gaddis java_chapter_09_5e
Gina Bullock
 
Eo gaddis java_chapter_06_Classes and Objects
Gina Bullock
 
Inheritance and Polymorphism
BG Java EE Course
 
Eo gaddis java_chapter_08_5e
Gina Bullock
 
Java Inheritance - sub class constructors - Method overriding
NithyaN19
 
Unit 3 Java
arnold 7490
 
OOPs Lecture 2
Abbas Ajmal
 
Inheritance in java
HarshitaAshwani
 

What's hot (14)

PPTX
Is2215 lecture2 student(2)
dannygriff1
 
PPT
Lecture 5 inheritance
the_wumberlog
 
PDF
Principles of Object Oriented Programming
Kasun Ranga Wijeweera
 
DOCX
OOP Concepets and UML Class Diagrams
Bhathiya Nuwan
 
PPTX
Inheritance
disha singh
 
PPT
Classes2
phanleson
 
PPT
Cso gaddis java_chapter11
mlrbrown
 
PPT
Cso gaddis java_chapter12
mlrbrown
 
PDF
Classes, objects, methods, constructors, this keyword in java
TharuniDiddekunta
 
PDF
Object oriented programming
mustafa sarac
 
PDF
java
Kunal Sunesara
 
PDF
Java - Inheritance Concepts
Victer Paul
 
PPT
Eo gaddis java_chapter_03_5e
Gina Bullock
 
Is2215 lecture2 student(2)
dannygriff1
 
Lecture 5 inheritance
the_wumberlog
 
Principles of Object Oriented Programming
Kasun Ranga Wijeweera
 
OOP Concepets and UML Class Diagrams
Bhathiya Nuwan
 
Inheritance
disha singh
 
Classes2
phanleson
 
Cso gaddis java_chapter11
mlrbrown
 
Cso gaddis java_chapter12
mlrbrown
 
Classes, objects, methods, constructors, this keyword in java
TharuniDiddekunta
 
Object oriented programming
mustafa sarac
 
Java - Inheritance Concepts
Victer Paul
 
Eo gaddis java_chapter_03_5e
Gina Bullock
 
Ad

Viewers also liked (13)

PDF
document-20
martika hall
 
PDF
Vista_Operator_Certificate
Jon Gerber
 
PDF
Pneumonia
Mirely da Silva
 
DOCX
Y ดิฟ 1
Faculty of Economics
 
PPT
Peter Hardin
Peter Hardin
 
PDF
document-18
martika hall
 
DOCX
Hak asasi manusia
Ruqayyah S
 
PPTX
Ancillary task 2
Christina Raye
 
PPTX
My Journey to Mastery
Sharelle Jenkins
 
PPTX
PERMEABLE PAVEMENT SYSTEMS AND TOP MIX PERMEABLE PAVEMENT
G.Ajith Kumar
 
PDF
Arnold CV
Arnold Osei-Bonsu
 
PPTX
Mensagem de aniversário
Juliana Marotta Rodrigues
 
PPT
Poster para asag2
Pablo Deromedis
 
document-20
martika hall
 
Vista_Operator_Certificate
Jon Gerber
 
Pneumonia
Mirely da Silva
 
Y ดิฟ 1
Faculty of Economics
 
Peter Hardin
Peter Hardin
 
document-18
martika hall
 
Hak asasi manusia
Ruqayyah S
 
Ancillary task 2
Christina Raye
 
My Journey to Mastery
Sharelle Jenkins
 
PERMEABLE PAVEMENT SYSTEMS AND TOP MIX PERMEABLE PAVEMENT
G.Ajith Kumar
 
Mensagem de aniversário
Juliana Marotta Rodrigues
 
Poster para asag2
Pablo Deromedis
 
Ad

Similar to Eo gaddis java_chapter_09_5e (20)

PPT
Java htp6e 09
Ayesha ch
 
PPT
Inheritance & Polymorphism - 1
PRN USM
 
PDF
Object oriented programming java inheritance
Fethulmubin
 
PPTX
Chapter 8.2
sotlsoc
 
PPT
RajLec10.ppt
Rassjb
 
PPTX
‫Chapter3 inheritance
Mahmoud Alfarra
 
PPTX
Pi j3.1 inheritance
mcollison
 
PPTX
Inheritance
Daman Toor
 
PPT
Unit 7 inheritance
atcnerd
 
PPTX
Inheritance
Venugopal Geetha
 
PPT
04inherit
Waheed Warraich
 
PPTX
encapsulation, inheritance, overriding, overloading
Shivam Singhal
 
PPT
Chapter 5 (OOP Principles).ppt
henokmetaferia1
 
PPTX
Ch5 inheritance
HarshithaAllu
 
PPTX
Chapter 3i
siragezeynu
 
PDF
Java programming -Object-Oriented Thinking- Inheritance
Jyothishmathi Institute of Technology and Science Karimnagar
 
PPT
InheritanceAndPolymorphismprein Java.ppt
gayatridwahane
 
PPT
06 InheritanceAndPolymorphism.ppt
ParikhitGhosh1
 
PDF
Java Inheritance
Rosie Jane Enomar
 
PPTX
Inheritance and Polymorphism Java
M. Raihan
 
Java htp6e 09
Ayesha ch
 
Inheritance & Polymorphism - 1
PRN USM
 
Object oriented programming java inheritance
Fethulmubin
 
Chapter 8.2
sotlsoc
 
RajLec10.ppt
Rassjb
 
‫Chapter3 inheritance
Mahmoud Alfarra
 
Pi j3.1 inheritance
mcollison
 
Inheritance
Daman Toor
 
Unit 7 inheritance
atcnerd
 
Inheritance
Venugopal Geetha
 
04inherit
Waheed Warraich
 
encapsulation, inheritance, overriding, overloading
Shivam Singhal
 
Chapter 5 (OOP Principles).ppt
henokmetaferia1
 
Ch5 inheritance
HarshithaAllu
 
Chapter 3i
siragezeynu
 
Java programming -Object-Oriented Thinking- Inheritance
Jyothishmathi Institute of Technology and Science Karimnagar
 
InheritanceAndPolymorphismprein Java.ppt
gayatridwahane
 
06 InheritanceAndPolymorphism.ppt
ParikhitGhosh1
 
Java Inheritance
Rosie Jane Enomar
 
Inheritance and Polymorphism Java
M. Raihan
 

More from Gina Bullock (20)

PPT
Eo gaddis java_chapter_10_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_14_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_12_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_11_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_08_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_06_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_05_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_04_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_01_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_06_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_10_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_07_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_01_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_16_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_14_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_13_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_12_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_11_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_02_5e
Gina Bullock
 
PPT
Eo gaddis java_chapter_05_5e
Gina Bullock
 
Eo gaddis java_chapter_10_5e
Gina Bullock
 
Eo gaddis java_chapter_14_5e
Gina Bullock
 
Eo gaddis java_chapter_12_5e
Gina Bullock
 
Eo gaddis java_chapter_11_5e
Gina Bullock
 
Eo gaddis java_chapter_08_5e
Gina Bullock
 
Eo gaddis java_chapter_06_5e
Gina Bullock
 
Eo gaddis java_chapter_05_5e
Gina Bullock
 
Eo gaddis java_chapter_04_5e
Gina Bullock
 
Eo gaddis java_chapter_01_5e
Gina Bullock
 
Eo gaddis java_chapter_06_5e
Gina Bullock
 
Eo gaddis java_chapter_10_5e
Gina Bullock
 
Eo gaddis java_chapter_07_5e
Gina Bullock
 
Eo gaddis java_chapter_01_5e
Gina Bullock
 
Eo gaddis java_chapter_16_5e
Gina Bullock
 
Eo gaddis java_chapter_14_5e
Gina Bullock
 
Eo gaddis java_chapter_13_5e
Gina Bullock
 
Eo gaddis java_chapter_12_5e
Gina Bullock
 
Eo gaddis java_chapter_11_5e
Gina Bullock
 
Eo gaddis java_chapter_02_5e
Gina Bullock
 
Eo gaddis java_chapter_05_5e
Gina Bullock
 

Recently uploaded (20)

PPTX
Basics and rules of probability with real-life uses
ravatkaran694
 
DOCX
Modul Ajar Deep Learning Bahasa Inggris Kelas 11 Terbaru 2025
wahyurestu63
 
PPTX
Tips Management in Odoo 18 POS - Odoo Slides
Celine George
 
PDF
Antianginal agents, Definition, Classification, MOA.pdf
Prerana Jadhav
 
PPTX
TEF & EA Bsc Nursing 5th sem.....BBBpptx
AneetaSharma15
 
PPTX
Kanban Cards _ Mass Action in Odoo 18.2 - Odoo Slides
Celine George
 
PPTX
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
PPTX
CDH. pptx
AneetaSharma15
 
PPTX
An introduction to Dialogue writing.pptx
drsiddhantnagine
 
PPTX
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
PDF
Biological Classification Class 11th NCERT CBSE NEET.pdf
NehaRohtagi1
 
DOCX
Unit 5: Speech-language and swallowing disorders
JELLA VISHNU DURGA PRASAD
 
PPTX
Five Point Someone – Chetan Bhagat | Book Summary & Analysis by Bhupesh Kushwaha
Bhupesh Kushwaha
 
PPTX
BASICS IN COMPUTER APPLICATIONS - UNIT I
suganthim28
 
PPTX
HEALTH CARE DELIVERY SYSTEM - UNIT 2 - GNM 3RD YEAR.pptx
Priyanshu Anand
 
PPTX
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
PDF
Virat Kohli- the Pride of Indian cricket
kushpar147
 
PPTX
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
DOCX
Action Plan_ARAL PROGRAM_ STAND ALONE SHS.docx
Levenmartlacuna1
 
PPTX
A Smarter Way to Think About Choosing a College
Cyndy McDonald
 
Basics and rules of probability with real-life uses
ravatkaran694
 
Modul Ajar Deep Learning Bahasa Inggris Kelas 11 Terbaru 2025
wahyurestu63
 
Tips Management in Odoo 18 POS - Odoo Slides
Celine George
 
Antianginal agents, Definition, Classification, MOA.pdf
Prerana Jadhav
 
TEF & EA Bsc Nursing 5th sem.....BBBpptx
AneetaSharma15
 
Kanban Cards _ Mass Action in Odoo 18.2 - Odoo Slides
Celine George
 
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
CDH. pptx
AneetaSharma15
 
An introduction to Dialogue writing.pptx
drsiddhantnagine
 
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
Biological Classification Class 11th NCERT CBSE NEET.pdf
NehaRohtagi1
 
Unit 5: Speech-language and swallowing disorders
JELLA VISHNU DURGA PRASAD
 
Five Point Someone – Chetan Bhagat | Book Summary & Analysis by Bhupesh Kushwaha
Bhupesh Kushwaha
 
BASICS IN COMPUTER APPLICATIONS - UNIT I
suganthim28
 
HEALTH CARE DELIVERY SYSTEM - UNIT 2 - GNM 3RD YEAR.pptx
Priyanshu Anand
 
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
Virat Kohli- the Pride of Indian cricket
kushpar147
 
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
Action Plan_ARAL PROGRAM_ STAND ALONE SHS.docx
Levenmartlacuna1
 
A Smarter Way to Think About Choosing a College
Cyndy McDonald
 

Eo gaddis java_chapter_09_5e

  • 1. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C HA PT E R 9 Inheritance
  • 2. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Topics What Is Inheritance? Calling the Superclass Constructor Overriding Superclass Methods Protected Members Classes that Inherit from Subclasses The Object Class Polymorphism Abstract Classes and Abstract Methods Interfaces
  • 3. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley What is Inheritance? Generalization vs. Specialization Real-life objects are typically specialized versions of other more general objects. The term “insect” describes a very general type of creature with numerous characteristics. Grasshoppers and bumblebees are insects They share the general characteristics of an insect. However, they have special characteristics of their own. grasshoppers have a jumping ability, and bumblebees have a stinger. Grasshoppers and bumblebees are specialized versions of an insect.
  • 4. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Inheritance Insect GrasshopperBumbleBee Contains those attributes and methods that are shared by all insects. Contains those attributes and methods that specific to a Bumble Bee. Contains those attributes and methods that are specific to a Grasshopper.
  • 5. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley The “is a” Relationship The relationship between a superclass and an inherited class is called an “is a” relationship. A grasshopper “is a” insect. A poodle “is a” dog. A car “is a” vehicle. A specialized object has: all of the characteristics of the general object, plus additional characteristics that make it special. In object-oriented programming, inheritance is used to create an “is a” relationship among classes.
  • 6. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley The “is a” Relationship We can extend the capabilities of a class. Inheritance involves a superclass and a subclass. The superclass is the general class and the subclass is the specialized class. The subclass is based on, or extended from, the superclass. Superclasses are also called base classes, and subclasses are also called derived classes. The relationship of classes can be thought of as parent classes and child classes.
  • 7. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Inheritance The subclass inherits fields and methods from the superclass without any of them being rewritten. New fields and methods may be added to the subclass. The Java keyword, extends, is used on the class header to define the subclass. public class FinalExam extends GradedActivity
  • 8. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley The GradedActivity Example Example: – GradedActivity.java, – GradeDemo.java, – FinalExam.java, – FinalExamDemo.java GradedActivity - score : double + setScore(s : double) : void + getScore() : double + getGrade() : char FinaExam - numQuestions : int - pointsEach : double - numMissed : int + FinalExam(questions : int, missed : int) + getPointsEach() : double + getNumMissed() : int Contains those attributes and methods that are shared by all graded activities. Contains those attributes and methods that are specific to the FinalExam class. Inherits all non-private attributes and methods from the GradedActivity class.
  • 9. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Inheritance, Fields and Methods Members of the superclass that are marked private: are not inherited by the subclass, exist in memory when the object of the subclass is created may only be accessed from the subclass by public methods of the superclass. Members of the superclass that are marked public: are inherited by the subclass, and may be directly accessed from the subclass.
  • 10. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Inheritance, Fields and Methods When an instance of the subclass is created, the non-private methods of the superclass are available through the subclass object. FinalExam exam = new FinalExam(); exam.setScore(85.0); System.out.println("Score = " + exam.getScore()); Non-private methods and fields of the superclass are available in the subclass. setScore(newScore);
  • 11. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Inheritance and Constructors Constructors are not inherited. When a subclass is instantiated, the superclass default constructor is executed first. Example: SuperClass1.java SubClass1.java ConstructorDemo1.java
  • 12. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley The Superclass’s Constructor The super keyword refers to an object’s superclass. The superclass constructor can be explicitly called from the subclass by using the super keyword. Example: SuperClass2.java, SubClass2.java, ConstructorDemo2.java Rectangle.java, Cube.java, CubeDemo.java
  • 13. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Calling The Superclass Constructor If a parameterized constructor is defined in the superclass, the superclass must provide a no-arg constructor, or subclasses must provide a constructor, and subclasses must call a superclass constructor. Calls to a superclass constructor must be the first java statement in the subclass constructors.
  • 14. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Overriding Superclass Methods A subclass may have a method with the same signature as a superclass method. The subclass method overrides the superclass method. This is known as method overriding. Example: GradedActivity.java, CurvedActivity.java, CurvedActivityDemo.java
  • 15. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Overriding Superclass Methods GradedActivity - score : double + setScore(s : double) : void + getScore() : double + getGrade() : char CurvedActivity - rawScore : double - percentage : double + CurvedActivity (percent : double) + setScore(s : double) : void + getRawScore() : double + getPercentage() : double This method is a more specialized version of the setScore method in the superclass, GradedActivity.
  • 16. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Overriding Superclass Methods Recall that a method’s signature consists of: the method’s name the data types method’s parameters in the order that they appear. A subclass method that overrides a superclass method must have the same signature as the superclass method. An object of the subclass invokes the subclass’s version of the method, not the superclass’s.
  • 17. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Overriding Superclass Methods An subclass method can call the overridden superclass method via the super keyword. super.setScore(rawScore * percentage); There is a distinction between overloading a method and overriding a method. Overloading is when a method has the same name as one or more other methods, but with a different signature. When a method overrides another method, however, they both have the same signature.
  • 18. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Overriding Superclass Methods Both overloading and overriding can take place in an inheritance relationship. Overriding can only take place in an inheritance relationship. Example: SuperClass3.java, SubClass3.java, ShowValueDemo.java
  • 19. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Preventing a Method from Being Overridden The final modifier will prevent the overriding of a superclass method in a subclass. public final void message() If a subclass attempts to override a final method, the compiler generates an error. This ensures that a particular superclass method is used by subclasses rather than a modified version of it.
  • 20. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Protected Members Protected members of class: may be accessed by methods in a subclass, and by methods in the same package as the class. Java provides a third access specification, protected. A protected member’s access is somewhere between private and public. Example: GradedActivity2.java FinalExam2.java ProtectedDemo.java
  • 21. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Protected Members Using protected instead of private makes some tasks easier. However, any class that is derived from the class, or is in the same package, has unrestricted access to the protected member. It is always better to make all fields private and then provide public methods for accessing those fields. If no access specifier for a class member is provided, the class member is given package access by default. Any method in the same package may access the member.
  • 22. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Access Specifiers Access Modifier Accessible to a subclass inside the same package? Accessible to all other classes inside the same package? default (no modifier) Yes Yes Public Yes Yes Protected Yes Yes Private No No Access Modifier Accessible to a subclass outside the package? Accessible to all other classes outside the package? default (no modifier) No No Public Yes Yes Protected Yes No Private No No
  • 23. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chains of Inheritance A superclass can also be derived from another class. Object PassFailActivity PassFailExam GradedActivity Example: GradedActivity.java PassFailActivity.java PassFailExam.java PassFailExamDemo.java
  • 24. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chains of Inheritance Classes often are depicted graphically in a class hierarchy. A class hierarchy shows the inheritance relationships between classes. PassFailActivity PassFailExam GradedActivity FinalExam
  • 25. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley The Object Class All Java classes are directly or indirectly derived from a class named Object. Object is in the java.lang package. Any class that does not specify the extends keyword is automatically derived from the Object class. public class MyClass { //this class is derived from Object. } Ultimately, every class is derived from the Object class.
  • 26. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley The Object Class Because every class is directly or indirectly derived from the Object class: every class inherits the Object class’s members. example: toString and equals. In the Object class, the toString method returns a string containing the object’s class name and a hash of its memory address. The equals method accepts the address of an object as its argument and returns true if it is the same as the calling object’s address. Example: ObjectMethods.java
  • 27. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Polymorphism A reference variable can reference objects of classes that are derived from the variable’s class. GradedActivity exam; We can use the exam variable to reference a GradedActivity object. exam = new GradedActivity(); The GradedActivity class is also used as the superclass for the FinalExam class. An object of the FinalExam class is a GradedActivity object.
  • 28. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Polymorphism A GradedActivity variable can be used to reference a FinalExam object. GradedActivity exam = new FinalExam(50, 7); This statement creates a FinalExam object and stores the object’s address in the exam variable. This is an example of polymorphism. The term polymorphism means the ability to take many forms. In Java, a reference variable is polymorphic because it can reference objects of types different from its own, as long as those types are subclasses of its type.
  • 29. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Polymorphism Other legal polymorphic references: GradedActivity exam1 = new FinalExam(50, 7); GradedActivity exam2 = new PassFailActivity(70); GradedActivity exam3 = new PassFailExam(100, 10, 70); The GradedActivity class has three methods: setScore, getScore, and getGrade. A GradedActivity variable can be used to call only those three methods. GradedActivity exam = new PassFailExam(100, 10, 70); System.out.println(exam.getScore()); // This works. System.out.println(exam.getGrade()); // This works. System.out.println(exam.getPointsEach()); // ERROR!
  • 30. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Polymorphism and Dynamic Binding If the object of the subclass has overridden a method in the superclass: If the variable makes a call to that method the subclass’s version of the method will be run. GradedActivity exam = new PassFailActivity(60); exam.setScore(70); System.out.println(exam.getGrade()); Java performs dynamic binding or late binding when a variable contains a polymorphic reference. The Java Virtual Machine determines at runtime which method to call, depending on the type of object that the variable references.
  • 31. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Polymorphism It is the object’s type, rather than the reference type, that determines which method is called. Example: Polymorphic.java You cannot assign a superclass object to a subclass reference variable.
  • 32. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Abstract Classes An abstract class cannot be instantiated, but other classes are derived from it. An Abstract class serves as a superclass for other classes. The abstract class represents the generic or abstract form of all the classes that are derived from it. A class becomes abstract when you place the abstract key word in the class definition. public abstract class ClassName
  • 33. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Abstract Methods An abstract method has no body and must be overridden in a subclass. An abstract method is a method that appears in a superclass, but expects to be overridden in a subclass. An abstract method has only a header and no body. AccessSpecifier abstract ReturnType MethodName(ParameterList); Example: Student.java, CompSciStudent.java, CompSciStudentDemo.java
  • 34. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Abstract Methods Notice that the key word abstract appears in the header, and that the header ends with a semicolon. public abstract void setValue(int value); Any class that contains an abstract method is automatically abstract. If a subclass fails to override an abstract method, a compiler error will result. Abstract methods are used to ensure that a subclass implements the method.
  • 35. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Interfaces An interface is similar to an abstract class that has all abstract methods. It cannot be instantiated, and all of the methods listed in an interface must be written elsewhere. The purpose of an interface is to specify behavior for other classes. An interface looks similar to a class, except: the keyword interface is used instead of the keyword class, and the methods that are specified in an interface have no bodies, only headers that are terminated by semicolons.
  • 36. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Interfaces The general format of an interface definition: public interface InterfaceName { (Method headers...) } All methods specified by an interface are public by default. A class can implement one or more interfaces.
  • 37. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Interfaces If a class implements an interface, it uses the implements keyword in the class header. public class FinalExam3 extends GradedActivity implements Relatable Example: GradedActivity.java Relatable.java FinalExam3.java InterfaceDemo.java
  • 38. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fields in Interfaces An interface can contain field declarations: all fields in an interface are treated as final and static. Because they automatically become final, you must provide an initialization value. public interface Doable { int FIELD1 = 1, FIELD2 = 2; (Method headers...) } In this interface, FIELD1 and FIELD2 are final static int variables. Any class that implements this interface has access to these variables.
  • 39. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Implementing Multiple Interfaces A class can be derived from only one superclass. Java allows a class to implement multiple interfaces. When a class implements multiple interfaces, it must provide the methods specified by all of them. To specify multiple interfaces in a class definition, simply list the names of the interfaces, separated by commas, after the implements key word. public class MyClass implements Interface1, Interface2, Interface3
  • 40. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Interfaces in UML GradedActivity RelatableFinalExam3 A dashed line with an arrow indicates implementation of an interface.
  • 41. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Polymorphism with Interfaces Java allows you to create reference variables of an interface type. An interface reference variable can reference any object that implements that interface, regardless of its class type. This is another example of polymorphism. Example: RetailItem.java CompactDisc.java DvdMovie.java PolymorphicInterfaceDemo.java
  • 42. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Polymorphism with Interfaces In the example code, two RetailItem reference variables, item1 and item2, are declared. The item1 variable references a CompactDisc object and the item2 variable references a DvdMovie object. When a class implements an interface, an inheritance relationship known as interface inheritance is established. a CompactDisc object is a RetailItem, and a DvdMovie object is a RetailItem.
  • 43. Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Polymorphism with Interfaces A reference to an interface can point to any class that implements that interface. You cannot create an instance of an interface. RetailItem item = new RetailItem(); // ERROR! When an interface variable references an object: only the methods declared in the interface are available, explicit type casting is required to access the other methods of an object referenced by an interface reference.