SlideShare a Scribd company logo
Java Tutorial                           Extending Classes and Interfaces                       java-06.fm



                                      Inheritance in Java
Inheritance is a compile-time mechanism in Java that allows you to extend a class (called the base
class or superclass) with another class (called the derived class or subclass). In Java,
inheritance is used for two purposes:

1. class inheritance - create a new class as an extension of another class, primarily for the purpose
   of code reuse. That is, the derived class inherits the public methods and public data of the
   base class. Java only allows a class to have one immediate base class, i.e., single class
   inheritance.
2. interface inheritance - create a new class to implement the methods defined as part of an
   interface for the purpose of subtyping. That is a class that implements an interface “conforms
   to” (or is constrained by the type of) the interface. Java supports multiple interface inheritance.

In Java, these two kinds of inheritance are made distinct by using different language syntax. For
class inheritance, Java uses the keyword extends and for interface inheritance Java uses the
keyword implements.

public class derived-class-name extends base-class-name {
    // derived class methods extend and possibly override
    // those of the base class
}

public class class-name implements interface-name {
    // class provides an implementation for the methods
    // as specified by the interface
}



Greg Lavender                                    Slide 1 of 12                                   6/15/99
Java Tutorial                            Extending Classes and Interfaces                       java-06.fm



                               Example of class inhertiance
package MyPackage;

class Base {
    private int x;
    public int f() { ... }
    protected int g() { ... }
}

class Derived extends Base {
    private int y;
    public int f() { /* new implementation for Base.f() */ }
    public void h() { y = g(); ... }
}

In Java, the protected access qualifier means that the protected item (field or method) is visible to a
any derived class of the base class containing the protected item. It also means that the protected
item is visible to methods of other classes in the same package. This is different from C++.

Q: What is the base class of class Object? I.e., what would you expect to get if you executed the
following code?

Object x = new Object();
System.out.println(x.getClass().getSuperclass());




Greg Lavender                                     Slide 2 of 12                                     6/15/99
Java Tutorial                            Extending Classes and Interfaces                       java-06.fm



                        Order of Construction under Inheritance
Note that when you construct an object, the default base class constructor is called implicitly, before
the body of the derived class constructor is executed. So, objects are constructed top-down under
inheritance. Since every object inherits from the Object class, the Object() constructor is always
called implicitly. However, you can call a superclass constructor explicitly using the builtin super
keyword, as long as it is the first statement in a constructor.

For example, most Java exception objects inherit from the java.lang.Exception class. If you wrote
your own exception class, say SomeException, you might write it as follows:

public class SomeException extends Exception {

        public SomeException() {
          super(); // calls Exception(), which ultimately calls Object()
        }

        public SomeException(String s) {
          super(s); // calls Exception(String), to pass argument to base class
        }

        public SomeException (int error_code) {
          this("error”); // class constructor above, which calls super(s)
          System.err.println(error_code);
        }
}




Greg Lavender                                     Slide 3 of 12                                   6/15/99
Java Tutorial                            Extending Classes and Interfaces                   java-06.fm



                                    Abstract Base Classes
An abstract class is a class that leaves one or more method implementations unspecified by
declaring one or more methods abstract. An abstract method has no body (i.e., no implementation). A
subclass is required to override the abstract method and provide an implementation. Hence, an
abstract class is incomplete and cannot be instantiated, but can be used as a base class.

abstract public class abstract-base-class-name {
    // abstract class has at least one abstract method

        public abstract return-type abstract-method-name ( formal-params );

        ... // other abstract methods, object methods, class methods
}

public class derived-class-name extends abstract-base-class-name {

        public return-type abstract-method-name (formal-params) { stmt-list; }

        ... // other method implementations
}

It would be an error to try to instantiate an object of an abstract type:

abstract-class-name obj = new abstract-class-name();                        // ERROR!

That is, operator new is invalid when applied to an abstract class.



Greg Lavender                                     Slide 4 of 12                               6/15/99
Java Tutorial                            Extending Classes and Interfaces                       java-06.fm



                               Example abstract class usage
abstract class Point {
    private int x, y;
    public Point(int x, int y) { this.x = x; this.y = y; }
    public void move(int dx, int dy)
    { x += dx; y += dy; plot(); }
    public abstract void plot(); // has no implementation
}

abstract class ColoredPoint extends Point {
    private int color;
    protected public ColoredPoint(int x, int y, int color)
    { super(x, y); this.color = color; }
}

class SimpleColoredPoint extends ColoredPoint {
    public SimpleColoredPoint(int x, int y, int color) { super(x,y,color); }
    public void plot() { ... } // code to plot a SimpleColoredPoint
}

Since ColoredPoint does not provide an implementation of the plot method, it must be declared
abstract. The SimpleColoredPoint class does implement the inherited plot method. It would be an
error to try to instantiate a Point object or a ColoredPoint object. However, you can declare a Point
reference and initialize it with an instance of a subclass object that implements the plot method:

Point p = new SimpleColoredPoint(a, b, red); p.plot();


Greg Lavender                                     Slide 5 of 12                                   6/15/99
Java Tutorial                            Extending Classes and Interfaces                       java-06.fm



                                              Interfaces
An abstract class mixes the idea of mutable data in the form of instance variables, non-abstract
methods, and abstract methods. An abstract class with only static final instance variables and all
abstract methods is called an interface. An interface is a specification, or contract, for a set of
methods that a class that implements the interface must conform to in terms of the type signature of
the methods. The class that implements the interface provides an implementation for each method,
just as with an abstract method in an abstract class.

So, you can think of an interface as an abstract class with all abstract methods. The interface itself
can have either public, package, private or protected access defined. All methods declared in an
interface are implicitly abstract and implicitly public. It is not necessary, and in fact considered
redundant to declare a method in an interface to be abstract.

You can define data in an interface, but it is less common to do so. If there are data fields defined in
an interface, then they are implicitly defined to be:

• public.
• static, and
• final


In other words, any data defined in an interface are treated as public constants.

Note that a class and an interface in the same package cannot share the same name.

Methods declared in an interace cannot be declared final. Why?



Greg Lavender                                     Slide 6 of 12                                   6/15/99
Java Tutorial                           Extending Classes and Interfaces                       java-06.fm



                                     Interface declaration
Interface names and class names in the same package must be distinct.

public interface interface-name {

        // if any data are defined, they must be constants
        public static final type-name var-name = constant-expr;

        // one or more implicitly abstract and public methods
        return-type method-name ( formal-params );
}

An interface declaraion is nothing more than a specification to which some class that purports to
implement the interface must conform to in its implementation. That is, a class the implements the
interface must have defined implementations for each of the interface methods.

The major reason for interfaces being distinct elements in Java is that you often want to define some
operation to operate on objects that all conform to the same interface. So, you can define some code in
a very general way, with a guarantee that by only using the methods defined in the interface, that all
objects that implement the interface will have defined implementations for all the methods.

For example, you might define a Shape interface that defines an area() method, and so you would
expect that any class that implements the Shape interface, would define an area method. So, if I
have a list of references to objects that implement the Shape interface, I can legitimately invoke the
area method, abstractly, on each of these objects and expect to obtain as a result a value that
represents the area of some shape.



Greg Lavender                                    Slide 7 of 12                                   6/15/99
Java Tutorial                           Extending Classes and Interfaces                       java-06.fm



                    Separation of Interface from Implementations
Interfaces are specifications for many possible implementations. Interfaces are used to define a
contract for how you interact with an object, independent of the underlying implementation. The
objective of an object-oriented programmer is to separate the specification of the interface from the
hidden details of the implementation.

Consider the specification of a common LIFO stack.

public interface StackInterface {
    boolean empty();
    void push(Object x);
    Object pop() throws EmptyStackException;
    Object peek() throws EmptyStackException;
}

Note that the methods in this interface are defined to operate on objects of type Object. Since a stack
is a “container type”, it is very common to use the base class for all objects, namely Object, as the
type of the arguments and results to a container type. Since all objects ultimately inherit from class
Object, we can always generically refer to any object in the system using an Object reference.
However, when we pop from a stack, we have to explicitly type case from the very general type
Object to a concrete type, so that we can manipulate the object concretely.

Q: How many different ways are there to implement a stack? If we are using just using a Stack object
(as opposed to implementing it ourselves) should we care?




Greg Lavender                                    Slide 8 of 12                                   6/15/99
Java Tutorial                     Extending Classes and Interfaces               java-06.fm



                    Stack implementation of the StackInterface

public class Stack implements StackInterface {

        private Vector v = new Vector();         // use java.util.Vector class

        public boolean empty() { return v.size() == 0; }

        public void push(Object item) { v.addElement(item); }

        public Object pop() {
            Object obj = peek();
            v.removeElementAt(v.size() - 1);
            return obj;
        }

        public Object peek() throws EmptyStackException {
            if (v.size() == 0)
               throw new EmptyStackException();
            return v.elementAt(v.size() - 1);
        }
}




Greg Lavender                              Slide 9 of 12                           6/15/99
Java Tutorial                              Extending Classes and Interfaces                          java-06.fm



                      Should a stack use or inherit from a vector?
The java.util.Stack class is defined as a subclass of the java.util.Vector class, rather than using a
Vector object as in the previous example. This sort of inheritance is not subtype inheritance, because
the interface of a Stack object can be violated because a Vector has a “wider” interface than a Stack,
i.e., a vector allows insertion into the front and the rear, so it is possible to violate the stack contract
by treating a stack object as a vector, and violating the LIFO specification of a stack.

public class Stack extends Vector {
   public Object push(Object item) {addElement(item); return item;}
   public Object pop() {
        Object obj;
        int len = size();
        obj = peek();
        removeElementAt(len - 1);
        return obj;
   }
   public Object peek() {
        int len = size();
        if (len == 0) throw new EmptyStackException();
        return elementAt(len - 1);
   }
   public boolean empty() { return size() == 0;}
}

Vector v = new Stack(); // legal - base class reference to subclass object
v.insertElementAt(x, 2); // insert object x into Vector slot 2!!


Greg Lavender                                       Slide 10 of 12                                     6/15/99
Java Tutorial                            Extending Classes and Interfaces                        java-06.fm



                When to use an Interface vs when to use an abstract class
Having reviewed their basic properties, there are two primary differences between interfaces and
abstract classes:

• an abstract class can have a mix of abstract and non-abstract methods, so some default
  implementations can be defined in the abstract base class. An abstract class can also have static
  methods, static data, private and protected methods, etc. In other words, a class is a class, so it
  can contain features inherent to a class. The downside to an abstract base class, is that since their
  is only single inheritance in Java, you can only inherit from one class.
• an interface has a very restricted use, namely, to declare a set of public abstract method
  singatures that a subclass is required to implement. An interfaces defines a set of type
  constraints, in the form of type signatures, that impose a requirement on a subclass to implement
  the methods of the interface. Since you can inherit multiple interfaces, they are often a very
  useful mechanism to allow a class to have different behaviors in different situations of usage by
  implementing multiple interfaces.


It is usually a good idea to implement an interface when you need to define methods that are to be
explicitly overridden by some subclass. If you then want some of the methods implemented with
default implementations that will be inherited by a subclass, then create an implementation class
for the interface, and have other class inherit (extend) that class, or just use an abstract base class
instead of an interface.




Greg Lavender                                     Slide 11 of 12                                    6/15/99
Java Tutorial                             Extending Classes and Interfaces                         java-06.fm



                     Example of default interface implementations
interface X {
    void f();
    int g();
}

class XImpl implements X {
    void g() { return -1; } // default implementation for g()
}

class Y extends XImpl implements X {
    void f() { ... } // provide implementation for f()
}

Note that when you invoke an abtract method using a reference of the type of an abstract class or an
interface, the method call is dynamically dispatched.

X x = new Y();
x.f();

The call x.f() causes a run-time determination of the actual type of object that ‘x’ refers to, then a
method lookup to determine which implementation of f() to invoke. In this case, Y.f(x) is called, but
the type of x is first converted to Y so that the ‘this’ reference is initialized to a reference of type Y
inside of f(), since the implicit type signature of Y.f() is really Y.f(final Y this);




Greg Lavender                                      Slide 12 of 12                                    6/15/99

More Related Content

What's hot (20)

PDF
itft-Inheritance in java
Atul Sehdev
 
PPT
04 inheritance
Pondugala Sowjanya
 
PPTX
Java inheritance
BHUVIJAYAVELU
 
PPTX
Inheritance in JAVA PPT
Pooja Jaiswal
 
PPTX
Multiple inheritance possible in Java
Kurapati Vishwak
 
PPT
Java Programming - Inheritance
Oum Saokosal
 
PPTX
Inheritance and its types In Java
MD SALEEM QAISAR
 
PPTX
Inheritance in Java
Tamanna Akter
 
PPT
Inheritance and Polymorphism
BG Java EE Course
 
PPT
Unit 3 Java
arnold 7490
 
PPSX
Seminar on java
shathika
 
PPTX
Inheritance in Java
Elizabeth alexander
 
PPTX
oops concept in java | object oriented programming in java
CPD INDIA
 
PDF
Inheritance In Java
Arnab Bhaumik
 
PPTX
Java(inheritance)
Pooja Bhojwani
 
PPTX
Inheritance In Java
Darpan Chelani
 
PPTX
Inheritance in java
Tech_MX
 
PPT
Inheritance polymorphism-in-java
Deepak Singh
 
PPT
Inheritance in java
Lovely Professional University
 
PDF
Classes, objects, methods, constructors, this keyword in java
TharuniDiddekunta
 
itft-Inheritance in java
Atul Sehdev
 
04 inheritance
Pondugala Sowjanya
 
Java inheritance
BHUVIJAYAVELU
 
Inheritance in JAVA PPT
Pooja Jaiswal
 
Multiple inheritance possible in Java
Kurapati Vishwak
 
Java Programming - Inheritance
Oum Saokosal
 
Inheritance and its types In Java
MD SALEEM QAISAR
 
Inheritance in Java
Tamanna Akter
 
Inheritance and Polymorphism
BG Java EE Course
 
Unit 3 Java
arnold 7490
 
Seminar on java
shathika
 
Inheritance in Java
Elizabeth alexander
 
oops concept in java | object oriented programming in java
CPD INDIA
 
Inheritance In Java
Arnab Bhaumik
 
Java(inheritance)
Pooja Bhojwani
 
Inheritance In Java
Darpan Chelani
 
Inheritance in java
Tech_MX
 
Inheritance polymorphism-in-java
Deepak Singh
 
Inheritance in java
Lovely Professional University
 
Classes, objects, methods, constructors, this keyword in java
TharuniDiddekunta
 

Viewers also liked (11)

PPS
Dacj 4 1-a
Niit Care
 
PPS
Dacj 2-2 b
Niit Care
 
PPTX
tL20 event handling
teach4uin
 
PPS
Aae oop xp_13
Niit Care
 
PPS
Dacj 2-1 b
Niit Care
 
PPTX
Controls
teach4uin
 
PDF
Java OOP Programming language (Part 5) - Inheritance
OUM SAOKOSAL
 
PDF
Java Inheritance
Rosie Jane Enomar
 
PPS
Ajs 1 b
Niit Care
 
PPSX
Inheritance
Selvin Josy Bai Somu
 
PPTX
Inheritance
Sapna Sharma
 
Dacj 4 1-a
Niit Care
 
Dacj 2-2 b
Niit Care
 
tL20 event handling
teach4uin
 
Aae oop xp_13
Niit Care
 
Dacj 2-1 b
Niit Care
 
Controls
teach4uin
 
Java OOP Programming language (Part 5) - Inheritance
OUM SAOKOSAL
 
Java Inheritance
Rosie Jane Enomar
 
Ajs 1 b
Niit Care
 
Inheritance
Sapna Sharma
 
Ad

Similar to java-06inheritance (20)

PDF
Java 06
Loida Igama
 
PPTX
Abstraction in java [abstract classes and Interfaces
Ahmed Nobi
 
PPTX
Lecture 18
talha ijaz
 
PDF
Exception handling and packages.pdf
Kp Sharma
 
PPT
ABSTRACT CLASSES AND INTERFACES.ppt
JayanthiM15
 
PPT
Ap Power Point Chpt7
dplunkett
 
PPTX
Abstraction encapsulation inheritance polymorphism
PriyadharshiniG41
 
PPTX
Unit II Inheritance ,Interface and Packages.pptx
pranalisonawane8600
 
PDF
Advanced Programming _Abstract Classes vs Interfaces (Java)
Professor Lili Saghafi
 
PPTX
abstract,final,interface (1).pptx upload
dashpayal697
 
PDF
Inheritance
Sardar Alam
 
PPT
Chap11
Terry Yoast
 
PPT
Chapter 9 Interface
OUM SAOKOSAL
 
PPTX
Abstract Class and Interface for Java Intoductory course.pptx
DrShamimAlMamun
 
PPTX
06_OOVP.pptx object oriented and visual programming
deffa5
 
PPT
9781439035665 ppt ch10
Terry Yoast
 
PPT
9 abstract interface
Abhijit Gaikwad
 
PPTX
Java presentation
Akteruzzaman .
 
PPT
oops with java modules i & ii.ppt
rani marri
 
Java 06
Loida Igama
 
Abstraction in java [abstract classes and Interfaces
Ahmed Nobi
 
Lecture 18
talha ijaz
 
Exception handling and packages.pdf
Kp Sharma
 
ABSTRACT CLASSES AND INTERFACES.ppt
JayanthiM15
 
Ap Power Point Chpt7
dplunkett
 
Abstraction encapsulation inheritance polymorphism
PriyadharshiniG41
 
Unit II Inheritance ,Interface and Packages.pptx
pranalisonawane8600
 
Advanced Programming _Abstract Classes vs Interfaces (Java)
Professor Lili Saghafi
 
abstract,final,interface (1).pptx upload
dashpayal697
 
Inheritance
Sardar Alam
 
Chap11
Terry Yoast
 
Chapter 9 Interface
OUM SAOKOSAL
 
Abstract Class and Interface for Java Intoductory course.pptx
DrShamimAlMamun
 
06_OOVP.pptx object oriented and visual programming
deffa5
 
9781439035665 ppt ch10
Terry Yoast
 
9 abstract interface
Abhijit Gaikwad
 
Java presentation
Akteruzzaman .
 
oops with java modules i & ii.ppt
rani marri
 
Ad

More from Arjun Shanka (20)

PDF
Asp.net w3schools
Arjun Shanka
 
PDF
Php tutorial(w3schools)
Arjun Shanka
 
PDF
Sms several papers
Arjun Shanka
 
PDF
Jun 2012(1)
Arjun Shanka
 
PDF
System simulation 06_cs82
Arjun Shanka
 
PDF
javaexceptions
Arjun Shanka
 
PDF
javarmi
Arjun Shanka
 
PDF
hibernate
Arjun Shanka
 
PDF
javapackage
Arjun Shanka
 
PDF
javaarray
Arjun Shanka
 
PDF
swingbasics
Arjun Shanka
 
PDF
spring-tutorial
Arjun Shanka
 
PDF
struts
Arjun Shanka
 
PDF
javathreads
Arjun Shanka
 
PDF
javabeans
Arjun Shanka
 
PPT
72185-26528-StrutsMVC
Arjun Shanka
 
PDF
javanetworking
Arjun Shanka
 
PDF
javaiostream
Arjun Shanka
 
PDF
servlets
Arjun Shanka
 
PDF
slides6
Arjun Shanka
 
Asp.net w3schools
Arjun Shanka
 
Php tutorial(w3schools)
Arjun Shanka
 
Sms several papers
Arjun Shanka
 
Jun 2012(1)
Arjun Shanka
 
System simulation 06_cs82
Arjun Shanka
 
javaexceptions
Arjun Shanka
 
javarmi
Arjun Shanka
 
hibernate
Arjun Shanka
 
javapackage
Arjun Shanka
 
javaarray
Arjun Shanka
 
swingbasics
Arjun Shanka
 
spring-tutorial
Arjun Shanka
 
struts
Arjun Shanka
 
javathreads
Arjun Shanka
 
javabeans
Arjun Shanka
 
72185-26528-StrutsMVC
Arjun Shanka
 
javanetworking
Arjun Shanka
 
javaiostream
Arjun Shanka
 
servlets
Arjun Shanka
 
slides6
Arjun Shanka
 

Recently uploaded (20)

PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PPTX
Digital Circuits, important subject in CS
contactparinay1
 
PDF
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Digital Circuits, important subject in CS
contactparinay1
 
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 

java-06inheritance

  • 1. Java Tutorial Extending Classes and Interfaces java-06.fm Inheritance in Java Inheritance is a compile-time mechanism in Java that allows you to extend a class (called the base class or superclass) with another class (called the derived class or subclass). In Java, inheritance is used for two purposes: 1. class inheritance - create a new class as an extension of another class, primarily for the purpose of code reuse. That is, the derived class inherits the public methods and public data of the base class. Java only allows a class to have one immediate base class, i.e., single class inheritance. 2. interface inheritance - create a new class to implement the methods defined as part of an interface for the purpose of subtyping. That is a class that implements an interface “conforms to” (or is constrained by the type of) the interface. Java supports multiple interface inheritance. In Java, these two kinds of inheritance are made distinct by using different language syntax. For class inheritance, Java uses the keyword extends and for interface inheritance Java uses the keyword implements. public class derived-class-name extends base-class-name { // derived class methods extend and possibly override // those of the base class } public class class-name implements interface-name { // class provides an implementation for the methods // as specified by the interface } Greg Lavender Slide 1 of 12 6/15/99
  • 2. Java Tutorial Extending Classes and Interfaces java-06.fm Example of class inhertiance package MyPackage; class Base { private int x; public int f() { ... } protected int g() { ... } } class Derived extends Base { private int y; public int f() { /* new implementation for Base.f() */ } public void h() { y = g(); ... } } In Java, the protected access qualifier means that the protected item (field or method) is visible to a any derived class of the base class containing the protected item. It also means that the protected item is visible to methods of other classes in the same package. This is different from C++. Q: What is the base class of class Object? I.e., what would you expect to get if you executed the following code? Object x = new Object(); System.out.println(x.getClass().getSuperclass()); Greg Lavender Slide 2 of 12 6/15/99
  • 3. Java Tutorial Extending Classes and Interfaces java-06.fm Order of Construction under Inheritance Note that when you construct an object, the default base class constructor is called implicitly, before the body of the derived class constructor is executed. So, objects are constructed top-down under inheritance. Since every object inherits from the Object class, the Object() constructor is always called implicitly. However, you can call a superclass constructor explicitly using the builtin super keyword, as long as it is the first statement in a constructor. For example, most Java exception objects inherit from the java.lang.Exception class. If you wrote your own exception class, say SomeException, you might write it as follows: public class SomeException extends Exception { public SomeException() { super(); // calls Exception(), which ultimately calls Object() } public SomeException(String s) { super(s); // calls Exception(String), to pass argument to base class } public SomeException (int error_code) { this("error”); // class constructor above, which calls super(s) System.err.println(error_code); } } Greg Lavender Slide 3 of 12 6/15/99
  • 4. Java Tutorial Extending Classes and Interfaces java-06.fm Abstract Base Classes An abstract class is a class that leaves one or more method implementations unspecified by declaring one or more methods abstract. An abstract method has no body (i.e., no implementation). A subclass is required to override the abstract method and provide an implementation. Hence, an abstract class is incomplete and cannot be instantiated, but can be used as a base class. abstract public class abstract-base-class-name { // abstract class has at least one abstract method public abstract return-type abstract-method-name ( formal-params ); ... // other abstract methods, object methods, class methods } public class derived-class-name extends abstract-base-class-name { public return-type abstract-method-name (formal-params) { stmt-list; } ... // other method implementations } It would be an error to try to instantiate an object of an abstract type: abstract-class-name obj = new abstract-class-name(); // ERROR! That is, operator new is invalid when applied to an abstract class. Greg Lavender Slide 4 of 12 6/15/99
  • 5. Java Tutorial Extending Classes and Interfaces java-06.fm Example abstract class usage abstract class Point { private int x, y; public Point(int x, int y) { this.x = x; this.y = y; } public void move(int dx, int dy) { x += dx; y += dy; plot(); } public abstract void plot(); // has no implementation } abstract class ColoredPoint extends Point { private int color; protected public ColoredPoint(int x, int y, int color) { super(x, y); this.color = color; } } class SimpleColoredPoint extends ColoredPoint { public SimpleColoredPoint(int x, int y, int color) { super(x,y,color); } public void plot() { ... } // code to plot a SimpleColoredPoint } Since ColoredPoint does not provide an implementation of the plot method, it must be declared abstract. The SimpleColoredPoint class does implement the inherited plot method. It would be an error to try to instantiate a Point object or a ColoredPoint object. However, you can declare a Point reference and initialize it with an instance of a subclass object that implements the plot method: Point p = new SimpleColoredPoint(a, b, red); p.plot(); Greg Lavender Slide 5 of 12 6/15/99
  • 6. Java Tutorial Extending Classes and Interfaces java-06.fm Interfaces An abstract class mixes the idea of mutable data in the form of instance variables, non-abstract methods, and abstract methods. An abstract class with only static final instance variables and all abstract methods is called an interface. An interface is a specification, or contract, for a set of methods that a class that implements the interface must conform to in terms of the type signature of the methods. The class that implements the interface provides an implementation for each method, just as with an abstract method in an abstract class. So, you can think of an interface as an abstract class with all abstract methods. The interface itself can have either public, package, private or protected access defined. All methods declared in an interface are implicitly abstract and implicitly public. It is not necessary, and in fact considered redundant to declare a method in an interface to be abstract. You can define data in an interface, but it is less common to do so. If there are data fields defined in an interface, then they are implicitly defined to be: • public. • static, and • final In other words, any data defined in an interface are treated as public constants. Note that a class and an interface in the same package cannot share the same name. Methods declared in an interace cannot be declared final. Why? Greg Lavender Slide 6 of 12 6/15/99
  • 7. Java Tutorial Extending Classes and Interfaces java-06.fm Interface declaration Interface names and class names in the same package must be distinct. public interface interface-name { // if any data are defined, they must be constants public static final type-name var-name = constant-expr; // one or more implicitly abstract and public methods return-type method-name ( formal-params ); } An interface declaraion is nothing more than a specification to which some class that purports to implement the interface must conform to in its implementation. That is, a class the implements the interface must have defined implementations for each of the interface methods. The major reason for interfaces being distinct elements in Java is that you often want to define some operation to operate on objects that all conform to the same interface. So, you can define some code in a very general way, with a guarantee that by only using the methods defined in the interface, that all objects that implement the interface will have defined implementations for all the methods. For example, you might define a Shape interface that defines an area() method, and so you would expect that any class that implements the Shape interface, would define an area method. So, if I have a list of references to objects that implement the Shape interface, I can legitimately invoke the area method, abstractly, on each of these objects and expect to obtain as a result a value that represents the area of some shape. Greg Lavender Slide 7 of 12 6/15/99
  • 8. Java Tutorial Extending Classes and Interfaces java-06.fm Separation of Interface from Implementations Interfaces are specifications for many possible implementations. Interfaces are used to define a contract for how you interact with an object, independent of the underlying implementation. The objective of an object-oriented programmer is to separate the specification of the interface from the hidden details of the implementation. Consider the specification of a common LIFO stack. public interface StackInterface { boolean empty(); void push(Object x); Object pop() throws EmptyStackException; Object peek() throws EmptyStackException; } Note that the methods in this interface are defined to operate on objects of type Object. Since a stack is a “container type”, it is very common to use the base class for all objects, namely Object, as the type of the arguments and results to a container type. Since all objects ultimately inherit from class Object, we can always generically refer to any object in the system using an Object reference. However, when we pop from a stack, we have to explicitly type case from the very general type Object to a concrete type, so that we can manipulate the object concretely. Q: How many different ways are there to implement a stack? If we are using just using a Stack object (as opposed to implementing it ourselves) should we care? Greg Lavender Slide 8 of 12 6/15/99
  • 9. Java Tutorial Extending Classes and Interfaces java-06.fm Stack implementation of the StackInterface public class Stack implements StackInterface { private Vector v = new Vector(); // use java.util.Vector class public boolean empty() { return v.size() == 0; } public void push(Object item) { v.addElement(item); } public Object pop() { Object obj = peek(); v.removeElementAt(v.size() - 1); return obj; } public Object peek() throws EmptyStackException { if (v.size() == 0) throw new EmptyStackException(); return v.elementAt(v.size() - 1); } } Greg Lavender Slide 9 of 12 6/15/99
  • 10. Java Tutorial Extending Classes and Interfaces java-06.fm Should a stack use or inherit from a vector? The java.util.Stack class is defined as a subclass of the java.util.Vector class, rather than using a Vector object as in the previous example. This sort of inheritance is not subtype inheritance, because the interface of a Stack object can be violated because a Vector has a “wider” interface than a Stack, i.e., a vector allows insertion into the front and the rear, so it is possible to violate the stack contract by treating a stack object as a vector, and violating the LIFO specification of a stack. public class Stack extends Vector { public Object push(Object item) {addElement(item); return item;} public Object pop() { Object obj; int len = size(); obj = peek(); removeElementAt(len - 1); return obj; } public Object peek() { int len = size(); if (len == 0) throw new EmptyStackException(); return elementAt(len - 1); } public boolean empty() { return size() == 0;} } Vector v = new Stack(); // legal - base class reference to subclass object v.insertElementAt(x, 2); // insert object x into Vector slot 2!! Greg Lavender Slide 10 of 12 6/15/99
  • 11. Java Tutorial Extending Classes and Interfaces java-06.fm When to use an Interface vs when to use an abstract class Having reviewed their basic properties, there are two primary differences between interfaces and abstract classes: • an abstract class can have a mix of abstract and non-abstract methods, so some default implementations can be defined in the abstract base class. An abstract class can also have static methods, static data, private and protected methods, etc. In other words, a class is a class, so it can contain features inherent to a class. The downside to an abstract base class, is that since their is only single inheritance in Java, you can only inherit from one class. • an interface has a very restricted use, namely, to declare a set of public abstract method singatures that a subclass is required to implement. An interfaces defines a set of type constraints, in the form of type signatures, that impose a requirement on a subclass to implement the methods of the interface. Since you can inherit multiple interfaces, they are often a very useful mechanism to allow a class to have different behaviors in different situations of usage by implementing multiple interfaces. It is usually a good idea to implement an interface when you need to define methods that are to be explicitly overridden by some subclass. If you then want some of the methods implemented with default implementations that will be inherited by a subclass, then create an implementation class for the interface, and have other class inherit (extend) that class, or just use an abstract base class instead of an interface. Greg Lavender Slide 11 of 12 6/15/99
  • 12. Java Tutorial Extending Classes and Interfaces java-06.fm Example of default interface implementations interface X { void f(); int g(); } class XImpl implements X { void g() { return -1; } // default implementation for g() } class Y extends XImpl implements X { void f() { ... } // provide implementation for f() } Note that when you invoke an abtract method using a reference of the type of an abstract class or an interface, the method call is dynamically dispatched. X x = new Y(); x.f(); The call x.f() causes a run-time determination of the actual type of object that ‘x’ refers to, then a method lookup to determine which implementation of f() to invoke. In this case, Y.f(x) is called, but the type of x is first converted to Y so that the ‘this’ reference is initialized to a reference of type Y inside of f(), since the implicit type signature of Y.f() is really Y.f(final Y this); Greg Lavender Slide 12 of 12 6/15/99