1 / 77

Inheritance and Polymorphism

Learn how to design classes for circles, rectangles, and triangles using inheritance to avoid redundancy. Explore the concepts of subclass, superclass, overriding, polymorphism, and dynamic binding.

kao
Télécharger la présentation

Inheritance and Polymorphism

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Chapter 11 Inheritance and Polymorphism

  2. Motivations Suppose you will define classes to model circles, rectangles, and triangles. These classes have many common features. What is the best way to design these classes so to avoid redundancy? The answer is to use inheritance.

  3. Objectives • To define a subclass from a superclass through inheritance (§11.2). • To invoke the superclass’s constructors and methods using the super keyword (§11.3). • To override instance methods in the subclass (§11.4). • To distinguish differences between overriding and overloading (§11.5). • To explore the toString() method in the Object class (§11.6). • To discover polymorphism and dynamic binding (§§11.7–11.8). • To describe casting and explain why explicit downcasting is necessary (§11.9). • To explore the equals method in the Object class (§11.10). • To store, retrieve, and manipulate objects in an ArrayList (§11.11). • To implement a Stack class using ArrayList (§11.12). • To enable data and methods in a superclass accessible from subclasses using the protected visibility modifier (§11.13). • To prevent class extending and method overriding using the final modifier (§11.14).

  4. Superclasses and Subclasses GeometricObject Circle Rectangle TestCircleRectangle Run

  5. 1  publicclassGeometricObject { 2   private String color = "white"; 3   privateboolean filled; 4   privatejava.util.DatedateCreated; 5   6   /** Construct a default geometric object */ 7   publicGeometricObject() { 8   dateCreated = newjava.util.Date(); 9   } 10   11   /** Construct a geometric object with color and filled value */ 12   public GeometricObject(String color, boolean filled) { 13   dateCreated = newjava.util.Date(); 14   this.color = color; 15   this.filled = filled; 16   } 17   18   /** Return color */ 19   public String getColor() { 20   return color; 21   } 22   23   /** Set a new color */ 24   publicvoidsetColor(String color) { 25   this.color = color; 26   } 27  

  6. 28   /** Return filled. Since filled is boolean, 29   * the get method is named isFilled */ 30   publicbooleanisFilled() { 31   return filled; 32   } 33   34   /** Set a new filled */ 35   publicvoidsetFilled(boolean filled) { 36   this.filled = filled; 37   } 38   39   /** Get dateCreated */ 40   publicjava.util.DategetDateCreated() { 41   returndateCreated; 42   } 43   44   45   public String toString() { 46   return"created on " + dateCreated + "\ncolor: " + color + 47   " and filled: " + filled; 48   } 49   50   /** Abstract method getArea */ 51   publicabstractdoublegetArea(); 52   53   /** Abstract method getPerimeter */ 54   publicabstractdoublegetPerimeter(); 55  }

  7. 1  publicclass Circle extendsGeometricObject { 2   privatedouble radius; 3   4   public Circle() { 5   6   } 7   public Circle (double radius) { 8   this.radius = radius; 9   } 10   11   public Circle (double radius, 12   String color, boolean filled) { 13   this.radius = radius; 14   setColor(color); 15   setFilled(filled); 16   } 17   18   19   /** Return radius */ 20   publicdoublegetRadius() { 21   return radius; 22   } 23  

  8. 24   /** Set a new radius */ 25   publicvoidsetRadius(double radius) { 26   this.radius = radius; 27   } 28   29   /** Return area */ 30   publicdoublegetArea() { 31   return radius * radius * Math.PI; 32   } 33   34   /** Return diameter */ 35   publicdoublegetDiameter() { 36   return2 * radius; 37   } 38   39   /** Return perimeter */ 40   publicdoublegetPerimeter() { 41   return2 * radius * Math.PI; 42   } 43   44   /* Print the circle info */ 45   publicvoidprintCircle() { 46   System.out.println("The circle is created " + getDateCreated() + 47   " and the radius is " + radius); 48   } 49  }

  9. Circle Class Subclass Superclass public class Circle extends GeometricObject The keyword extends tells the compiler that the Circle class extends the GeometricObject public Circle(double radius, String color, boolean filled) { this.radius = radius; this.color = color; // Illegal this.filled = filled; // Illegal }

  10. 1  publicclass Rectangle 2   extendsGeometricObject { 3   privatedouble width; 4   privatedouble height; 5   6   public Rectangle () { 7   } 8   9   public Rectangle ( 10   double width, double height) { 11   this.width = width; 12   this.height = height; 13   } 14   15   public Rectangle ( 16   double width, double height, String color, boolean filled) { 17   this.width = width; 18   this.height = height; 19   setColor(color); 20   setFilled(filled); 21   } 22   23   /** Return width */ 24   publicdoublegetWidth() { 25   return width; 26   }

  11. 28   /** Set a new width */ 29   publicvoidsetWidth(double width) { 30   this.width = width; 31   } 32   33   /** Return height */ 34   publicdoublegetHeight() { 35   return height; 36   } 37   38   /** Set a new height */ 39   publicvoidsetHeight(double height) { 40   this.height = height; 41   } 42   43   /** Return area */ 44   publicdoublegetArea() { 45   return width * height; 46   } 47   48   /** Return perimeter */ 49   publicdoublegetPerimeter() { 50   return2 * (width + height); 51   } 52  }

  12. 1  publicclassTestCircleRectangle { 2   publicstaticvoid main(String[] args) { 3   Circle circle = 4   new Circle (1); 5   System.out.println("A circle " + circle.toString()); 6   System.out.println("The color is " + circle.getColor()); 7   System.out.println("The radius is " + circle.getRadius()); 8   System.out.println("The area is " + circle.getArea()); 9   System.out.println("The diameter is " + circle.getDiameter()); 10   11   Rectangle rectangle = 12   new Rectangle (2, 4); 13   System.out.println("\nA rectangle " + rectangle.toString()); 14   System.out.println("The area is " + rectangle.getArea()); 15   System.out.println("The perimeter is " + 16   rectangle.getPerimeter()); 17   } 18  } A circle created on Thu Feb 10 19:54:25 EST 2011 color: white and filled: false The color is white The radius is 1.0 The area is 3.141592653589793 The diameter is 2.0 A rectangle created on Thu Feb 10 19:54:25 EST 2011 color: white and filled: false The area is 8.0 The perimeter is 12.0

  13. Are superclass’s Constructor Inherited? • No. They are not inherited. • They are invoked explicitly or implicitly. • A constructor is used to construct an instance of a class. • Unlike properties and methods, a superclass's constructors are not inherited in the subclass.

  14. Are superclass’s Constructor Inherited? • They can only be invoked from the subclasses' constructors, using the keyword super. 11   public Circle (double radius, 12   String color, boolean filled) { 13   this.radius = radius; 14   setColor(color); 15   setFilled(filled); 16   } must be the first statement of the subclass’s constructor 11   public Circle (double radius, 12   String color, boolean filled) { 13   super(color, filled); 14   this.radius = radius; 15   16   }

  15. Are superclass’s Constructor Inherited? • If the keyword super is not explicitly used, the superclass's no-arg constructor is automatically invoked.

  16. Superclass’s Constructor Is Always Invoked A constructor may invoke an overloaded constructor or its superclass’s constructor. If none of them is invoked explicitly, the compiler puts super() as the first statement in the constructor. For example,

  17. Using the Keyword super The keyword super refers to the superclass of the class in which super appears. This keyword can be used in two ways: • To call a superclass constructor • To call a superclass method

  18. CAUTION You must use the keyword super to call the superclass constructor. Invoking a superclass constructor’s name in a subclass causes a syntax error. Java requires that the statement that uses the keyword super appear first in the constructor.

  19. Constructor Chaining Constructing an instance of a class invokes all the superclasses’ constructors along the inheritance chain. This is known as constructor chaining. public class Faculty extends Employee { public static void main(String[] args) { new Faculty(); } public Faculty() { System.out.println("(4) Faculty's no-arg constructor is invoked"); } } class Employee extends Person { public Employee() { this("(2) Invoke Employee’s overloaded constructor"); System.out.println("(3) Employee's no-arg constructor is invoked"); } public Employee(String s) { System.out.println(s); } } class Person { public Person() { System.out.println("(1) Person's no-arg constructor is invoked"); } }

  20. animation Trace Execution public class Faculty extends Employee { public static void main(String[] args) { new Faculty(); } public Faculty() { System.out.println("(4) Faculty's no-arg constructor is invoked"); } } class Employee extends Person { public Employee() { this("(2) Invoke Employee’s overloaded constructor"); System.out.println("(3) Employee's no-arg constructor is invoked"); } public Employee(String s) { System.out.println(s); } } class Person { public Person() { System.out.println("(1) Person's no-arg constructor is invoked"); } } 1. Start from the main method

  21. animation Trace Execution public class Faculty extends Employee { public static void main(String[] args) { new Faculty(); } public Faculty() { System.out.println("(4) Faculty's no-arg constructor is invoked"); } } class Employee extends Person { public Employee() { this("(2) Invoke Employee’s overloaded constructor"); System.out.println("(3) Employee's no-arg constructor is invoked"); } public Employee(String s) { System.out.println(s); } } class Person { public Person() { System.out.println("(1) Person's no-arg constructor is invoked"); } } 2. Invoke Faculty constructor

  22. animation Trace Execution public class Faculty extends Employee { public static void main(String[] args) { new Faculty(); } public Faculty() { System.out.println("(4) Faculty's no-arg constructor is invoked"); } } class Employee extends Person { public Employee() { this("(2) Invoke Employee’s overloaded constructor"); System.out.println("(3) Employee's no-arg constructor is invoked"); } public Employee(String s) { System.out.println(s); } } class Person { public Person() { System.out.println("(1) Person's no-arg constructor is invoked"); } } 3. Invoke Employee’s no-arg constructor

  23. animation Trace Execution public class Faculty extends Employee { public static void main(String[] args) { new Faculty(); } public Faculty() { System.out.println("(4) Faculty's no-arg constructor is invoked"); } } class Employee extends Person { public Employee() { this("(2) Invoke Employee’s overloaded constructor"); System.out.println("(3) Employee's no-arg constructor is invoked"); } public Employee(String s) { System.out.println(s); } } class Person { public Person() { System.out.println("(1) Person's no-arg constructor is invoked"); } } 4. Invoke Employee(String) constructor

  24. animation Trace Execution public class Faculty extends Employee { public static void main(String[] args) { new Faculty(); } public Faculty() { System.out.println("(4) Faculty's no-arg constructor is invoked"); } } class Employee extends Person { public Employee() { this("(2) Invoke Employee’s overloaded constructor"); System.out.println("(3) Employee's no-arg constructor is invoked"); } public Employee(String s) { System.out.println(s); } } class Person { public Person() { System.out.println("(1) Person's no-arg constructor is invoked"); } } 5. Invoke Person() constructor

  25. animation Trace Execution public class Faculty extends Employee { public static void main(String[] args) { new Faculty(); } public Faculty() { System.out.println("(4) Faculty's no-arg constructor is invoked"); } } class Employee extends Person { public Employee() { this("(2) Invoke Employee’s overloaded constructor"); System.out.println("(3) Employee's no-arg constructor is invoked"); } public Employee(String s) { System.out.println(s); } } class Person { public Person() { System.out.println("(1) Person's no-arg constructor is invoked"); } } 6. Execute println

  26. animation Trace Execution public class Faculty extends Employee { public static void main(String[] args) { new Faculty(); } public Faculty() { System.out.println("(4) Faculty's no-arg constructor is invoked"); } } class Employee extends Person { public Employee() { this("(2) Invoke Employee’s overloaded constructor"); System.out.println("(3) Employee's no-arg constructor is invoked"); } public Employee(String s) { System.out.println(s); } } class Person { public Person() { System.out.println("(1) Person's no-arg constructor is invoked"); } } 7. Execute println

  27. animation Trace Execution public class Faculty extends Employee { public static void main(String[] args) { new Faculty(); } public Faculty() { System.out.println("(4) Faculty's no-arg constructor is invoked"); } } class Employee extends Person { public Employee() { this("(2) Invoke Employee’s overloaded constructor"); System.out.println("(3) Employee's no-arg constructor is invoked"); } public Employee(String s) { System.out.println(s); } } class Person { public Person() { System.out.println("(1) Person's no-arg constructor is invoked"); } } 8. Execute println

  28. animation Trace Execution public class Faculty extends Employee { public static void main(String[] args) { new Faculty(); } public Faculty() { System.out.println("(4) Faculty's no-arg constructor is invoked"); } } class Employee extends Person { public Employee() { this("(2) Invoke Employee’s overloaded constructor"); System.out.println("(3) Employee's no-arg constructor is invoked"); } public Employee(String s) { System.out.println(s); } } class Person { public Person() { System.out.println("(1) Person's no-arg constructor is invoked"); } } 9. Execute println

  29. Example on the Impact of a Superclass without no-arg Constructor Find out the errors in the program: public class Apple extends Fruit { } class Fruit { public Fruit(String name) { System.out.println("Fruit's constructor is invoked"); } }

  30. Defining a Subclass A subclass inherits from a superclass. You can also: • Add new properties • Add new methods • Override the methods of the superclass

  31. Calling Superclass Methods You could rewrite the printCircle() method in the Circle class as follows: 44   /* Print the circle info */ 45   publicvoid printCircle() { 46   System.out.println("The circle is created " + getDateCreated() + 47   " and the radius is " + radius); 48   } public void printCircle() { System.out.println("The circle is created " + super.getDateCreated() + " and the radius is " + radius); } It is not necessary to put the keyword super. Nevertheless in other cases itis needed.

  32. Overriding Methods in the Superclass • A subclass inherits methods from a superclass. • Sometimes it is necessary for the subclass to modify the implementation of a method defined in the superclass. • This is referred to as method overriding. public class Circle extends GeometricObject { // Other methods are omitted /** Override the toString method defined in GeometricObject */ public String toString() { return super.toString() + "\nradius is " + radius; } }

  33. NOTE • The overriding method must have the same signature as the overridden method and same or compatible return type. • Compatible means that the overriding method’s return type is a subtype of the overridden method’s return type.

  34. NOTE • An instance method can be overridden only if it is accessible. • Thus a private method cannot be overridden, because it is not accessible outside its own class. • If a method defined in a subclass is private in its superclass, the two methods are completely unrelated.

  35. NOTE • Like an instance method, a static method can be inherited. • However, a static method cannot be overridden. • If a static method defined in the superclass is redefined in a subclass, the method defined in the superclass is hidden.

  36. Overriding vs. Overloading

  37. Overriding vs. Overloading • Overridden methods • In different classes related by inheritance • Have the same signature • Overloaded methods • Overloaded methods • Can be either in the same class, or in different classes related by inheritance. • Have the same name but different parameter lists.

  38. Override Annotation 1 public class Circle extends GeometricObject { 2 // Other methods are omitted 3 4 @Override 5 public String toString() { 6 return super.toString() + "\nradius is " + radius; 7 } 8 } If a method with this annotation does not override its superclass’s method, the compiler will report an error.

  39. The Object Class and Its Methods • Every class in Java is descended from the java.lang.Object class. • If no inheritance is specified when a class is defined, the superclass of the class is Object.

  40. The toString() method in Object • The toString() method returns a string representation of the object. public String toString() • The default implementation returns • a string consisting of a class name of which the object is an instance, • the at sign (@), • and a number representing this object. Loan loan = new Loan(); System.out.println(loan.toString()); • The code displays something like Loan@15037e5 . • Usually you should override the toString method so that it returns a digestible string representation of the object.

  41. Polymorphism Polymorphism means that a variable of a supertype can refer to a subtype object. • A class defines a type. • A type defined by a subclass is called a subtype • a type defined by its superclass is called a supertype. • Therefore, you can say that Circle is a subtype of GeometricObject and GeometricObject is a supertype for Circle. PolymorphismDemo Run

  42. 1  publicclassPolymorphismDemo { 2   /** Main method */ 3   publicstaticvoid main(String[] args) { 4   // Display circle and rectangle properties 5   displayObject(new Circle(1, "red", false)); 6   displayObject(new Rectangle(1, 1, "black", true)); 7   } 8   9   /** Display geometric object properties */ 10   publicstaticvoiddisplayObject(GeometricObject object) { 13   System.out.println("Created on " + object.getDateCreated() + 14   ". Color is " + object.getColor()); 15   } 16  } Created on Mon Mar 09 19:25:20 EDT 2011. Color is red Created on Mon Mar 09 19:25:20 EDT 2011. Color is black • An object of a subclass can be used wherever its superclass object is used. • polymorphism (from a Greek word meaning “manyforms”) • In simple terms, polymorphism means that a variable of a supertype can refer to a subtype object.

  43. Polymorphism, Dynamic Binding and Generic Programming 1  publicclassDynamicBindingDemo { 2   publicstaticvoid main(String[] args) { 3   m(newGraduateStudent()); 4   m(new Student()); 5   m(new Person()); 6   m(new Object()); 7   } 8   9   publicstaticvoid m(Object x) { 10   System.out.println(x.toString()); 11   } 12  } 13   14  classGraduateStudentextends Student { 15  } 16   17  class Student extends Person { 18   @Override 19   public String toString() { 20   return"Student"; 21   } 22  } 23   24  class Person extends Object { 25   @Override 26   public String toString() { 27   return"Person"; 28   } 29  } Method m takes a parameter of the Object type. You can invoke it with any object. When the method m(Object x) is executed, the argument x’s toString method is invoked. x may be an instance of GraduateStudent, Student, Person, or Object. Classes GraduateStudent, Student, Person, and Object have their own implementation of the toString method. Which implementation is used will be determined dynamically by the Java Virtual Machine at runtime. This capability is known as dynamic binding. An object of a subtype can be used wherever its supertype value is required. This feature is known as polymorphism. DynamicBindingDemo Run

  44. Object Person Student GraduateStudent

  45. Dynamic Binding Dynamic binding works as follows: Suppose an object o is an instance of classes C1, C2, ..., Cn-1, and Cn, where C1 is a subclass of C2, C2 is a subclass of C3, ..., and Cn-1 is a subclass of Cn. That is, Cn is the most general class, and C1 is the most specific class. In Java, Cn is the Object class. If o invokes a method p, the JVM searches the implementation for the method p in C1, C2, ..., Cn-1 and Cn, in this order, until it is found. Once an implementation is found, the search stops and the first-found implementation is invoked.

  46. Method Matching vs. Binding • Matching a method signature and binding a method implementation are two issues. • The compiler finds a matching method according to parameter type, number of parameters, and order of the parameters at compilation time. • A method may be implemented in several subclasses. • The Java Virtual Machine dynamically binds the implementation of the method at runtime.

  47. Generic Programming 1  publicclassDynamicBindingDemo { 2   publicstaticvoid main(String[] args) { 3   m(newGraduateStudent()); 4   m(new Student()); 5   m(new Person()); 6   m(new Object()); 7   } 8   9   publicstaticvoid m(Object x) { 10   System.out.println(x.toString()); 11   } 12  } 13   14  classGraduateStudentextends Student { 15  } 16   17  class Student extends Person { 18   @Override 19   public String toString() { 20   return"Student"; 21   } 22  } 23   24  class Person extends Object { 25   @Override 26   public String toString() { 27   return"Person"; 28   } 29  } • Polymorphism allows methods to be used generically for a wide range of object arguments. • This is known as generic programming. If a method’s parameter type is a superclass (e.g., Object), you may pass an object to this method of any of the parameter’s subclasses (e.g., Student or String). • When an object (e.g., a Student object or a String object) is used in the method, the particular implementation of the method of the object that is invoked (e.g., toString) is determined dynamically.

  48. Casting Objects • Declared type • The type that declares a variable • A variable of a reference type can hold a null value or a reference to an instance of the declared type • The instance may be created using the constructor of the declared type or its subtype • Actual type • The actual class for the object referenced by the variable

  49. Casting Objects • Casting operator converts variables of one primitive type to another. • Casting can also be used to convert an object of one class type to another. within an inheritance hierarchy. • The statement m(new Student()); Assigns the object new Student() to a parameter of the Object type. This statement is equivalent to: Object o = new Student(); // Implicit casting m(o); The statement Object o = new Student(), known as implicit casting, is legal because an instance of Student is automatically an instance of Object.

  50. Why Casting Is Necessary? • Suppose you want to assign the object reference o to a variable of the Student type using the following statement: Student b = o; • A compile error would occur. • Why does the statement Object o = new Student()work • and the statement Student b = o doesn’t?

More Related