1 / 63

Introduction to Inheritance

James Brucker. Introduction to Inheritance. These slides cover only the basics of inheritance. What is Inheritance?. One class incorporates all the attributes and behavior from another class -- it inherits these attributes and behavior. SuperClass more general.

claudiaf
Download Presentation

Introduction to Inheritance

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. James Brucker Introduction to Inheritance These slides cover only the basics of inheritance.

  2. What is Inheritance? One class incorporates all the attributes and behavior from another class -- it inherits these attributes and behavior. SuperClass more general • A subclass inheritsall the attributes and behavior of the superclass. • It can directly access the public & protected members of the superclass. • Subclass can redefine some inherited behavior, or add new attributes and behavior. is a SubClass more specialized UML for inheritance

  3. Terminology Different names are used for inheritance relationships. They mean the same thing. Actor more general Animal more specialized

  4. "Specializing" or "Extending" a Type Car start( ) stop( ) accelerate( ) Consider a basic Car. What is the behavior of a Car? An AutomaticCar is a special kind of Car with automatic transmission. AutomaticCar can do anything a Car can do. It also adds extrabehavior. AutomaticCar drive( ) start( ) stop( ) accelerate( )

  5. Benefit of Extending a Type Car start( ) stop( ) accelerate( ) Extension has some benefits: Benefit to user If you can drive a basic Car, you can drive an Automatic Car. It works (almost) the same. Benefit to producer (programmer) You can reuse the behavior from Car to create AutomaticCar. Just add automatic "drive". AutomaticCar drive( ) start( ) stop( ) accelerate( )

  6. What do you inherit? Object A subclass inherits from its parent classes: • attributes • methods - even private ones. • cannot access"private" members of parent Account accountID owner dateCreated Account( ) ... In Java, Object is a superclass of all classes. Any method that Object has, every class has. SavingAccount deposit(amount)

  7. Syntax for Inheritance class SuperClass { ... } class SubClassextends SuperClass { ... } Use "extends" and the parent class name.

  8. Interpretation of Inheritance (1) Account - accountName - accountID # balance + deposit( Money ) : void + withdraw( Money ) : void + toString( ) : String Superclass defines basic behavior and attributes.

  9. Interpretation of Inheritance (2) A subclass can... • add new behavior and attributes (extension) • redefine existing behavior (specialize) SavingAccount +getInterest(): double +withdraw( Money ) : void +toString( ) : String Account - accountName - accountId # balance + deposit( Money ) : void + withdraw(Money) : void + toString( ) : String Subclass can override methods to specialize its behavior. SavingAccount overrides withdraw and toString.

  10. Attributes and Inheritance class SavingAccount extends Account { public String toString( ) { m = balance; id = getAccountId( ); Subclass can access: 1) public and protected attributes of parent 2) for private attributes must use an accessor method (provided by the parent class) protected member of Account use accessor method to get private accountId value of Account

  11. Object: the Universal Superclass • All Java classes are subclasses of Object. • You don't write "... extends Object". • Object defines basic methods for all classes: java.lang.Object #clone() : Object +equals(Object): bool +finalize() : void +getClass() : Class +hashCode() : int +toString() : String +wait() : void Every class is guaranteed to have these methods. Either: (1) inherit them (2) override in subclass

  12. Specializing from Object • Most classes want to define their own equals and toString methods. • This lets them specialize the behavior for their type. • Java automatically calls the class's own method (polymorphism). Object Coin +equals(Object): bool +hashCode() : int +toString() : String Coinoverrides these methods for Coin objects.

  13. Constructors and Inheritance Object To build a building... • first you must build the foundation • then build the first floor • then build the second floor • etc. Example: Double is subclass of Number Double d = new Double(1) Number Double Floor 2 (Double) Floor 1 (Number) Foundation (Object) Foundation (Object)

  14. Constructors and Inheritance To build an object of the Double class... • first you have to build the foundation class (Object) • then build the 1st subclass (Number) • then build the 2nd subclass (Double) Example: Double d = new Double( 1.0 ); d : Double Number Number Object Object Object

  15. Calling a Superclass Constructor When you invoke an object's constructor, it always calls a constructor of the superclass. Example: Double d = new Double(2.5); • implicitly calls Number(), which calls Object(). new Double() super( ) super( ) Double Number Number Object Object Object

  16. Calling a Superclass Constructor Each subclass must invoke its subclass constructor to "build" the superclass object. 2 ways to do this: • explicitly write super( ) to invoke super constructor • implicitly (Java compiler) invoke the superclass default constructor super( ) super( ) Double Number Number Object Object Object

  17. Implicit call to superclass Constructor • If a class does not explicitly call a "super" constructor, then Java will automatically insert a call to super( ) • Java calls the superclass default constructor public class Object { public Object( ) {/* constructor for Object class */ } public class Number extends Object { public Number( ) {// default constructor } super( ) public class Double extends Number { public Double( double value ) { this.value = value; } super( )

  18. Explicitly Call Superclass Constructor • A subclass can call a superclass constructor using the reserved name: super(...) • super must be the first statementin the constructor. public class Account { public Account( String acctId ) { // constructor for objects of Account class } } public class SavingAccount extends Account { public SavingAccount( String acctId, String name) { super( acctId ); } }

  19. Error in automatic call to super( ) • If superclass does not have a default constructor, you will get an error from compiler. In SavingAccount: public class SavingAccount extends Account { public SavingAccount(String acctId, String name) { // initialize SavingAccount attributes this.name = name; } implicit call to super( ) The Java compiler issues an error message: Implicit super constructor Account( ) is undefined.

  20. Why the Error? • Account doesn't have a default constructor, so we get an error. • This error is good! It reminds us that we must invoke the right constructor of Account. Lesson: • If superclass does not have a default constructor, then subclasses must explicitly write super( something ).

  21. A Class has only One Parent Class Parent AnotherParent A class can directly extend only one other class. A class cannot have two parent classes. X Subclass + equals(Object): bool + toString( ) : String C++ has multipleinheritance, but it is complex. Java, C#, and Python allow only singleinheritance.

  22. Number: parent of numeric classes • Another prodigious parent class is Number. • Number defines methods that all numeric classes must have, but does not implement them (abstract methods). Object These methods are abstract in Number. This means the subclasses are required to implement them Number shortValue() intValue() longValue() floatValue() doubleValue() Short Integer Long Float Double BigInteger BigDecimal

  23. Polymorphism using Number public void display(Number num) { System.out.println("The value is "+num.intValue() ); } display( new Integer( 10 ) ); display( new BigDecimal( 3.14159 ) ); The value is 10 The value is 3 Question: What O-O fundamental enables display to accept a parameter of type Integer or BigDecimal?

  24. Inherited Methods Object #clone() equals(Object) finalize() getClass() hashCode() toString() wait() extends new behavior class Money { public int getValue( ) {...} public boolean equals(Object) ... override behavior

  25. Inherited Methods Money #clone() equals(Object) finalize() getClass() hashCode() toString() wait() getValue(): int Object #clone() equals(Object) finalize() getClass() hashCode() toString() wait()

  26. Summary: Override vs New Method public class Money { public int compareTo( Money other ) } public class Coin extends Money { public int compareTo( Money other ) } Override method must match the signature of the superclass method:

  27. What Can Override Methods Change public class Purse { protectedList withdraw( double amount ) } public class MyPurse extends Purse { public ArrayList withdraw( double amount ) } Override method can change 2 things in the signature: (1) can be more visible than parent method (2) return type can be a subtype of parent's return type

  28. New Method, not Override Any other change in the method signature defines a new method,not an override of parent method. public class Money { public int compareTo( Money other ) @Override public boolean equals( Object other ) } public class Coin extends Money { public int compareTo( Coin other ) // new method public int compareTo( Coin a, Coin b ) // new method public boolean equals( Coin other ) // new method

  29. Why write @Override ? Enables compiler to detect accidental misspelling, etc. public class Money { @Override// Compile-time ERROR: invalid "override" public boolean equals( Money other ) { return this.value == other.value; } // Typing error: define a new method "tostring" (not override) public String tostring( ) { return "Money, money"; } if you write @Override, the compiler will warn you of misspelled "toString"

  30. Two uses of @Override 1. In Java 5, @Override always meant "override a method" public class Money { @Override public String toString( ) { return "some money"; } 2. In Java 6+, @Override can also mean "implements" public class Money implements Comparable<Money> { @Override public int compareTo(Money other) { . . . }

  31. Cannot Override • Constructors • static methods • private methods • final methods Subclass can define a new method with same name. Redefining final methods is forbidden. Compile-time error.

  32. Preventing Inheritance: final class A "final" class cannot have any subclasses. All "enum" types are final. String, Double, Float, Integer, ... classes are final. public final class String { ... }

  33. Prevent Overriding: final methods • A "final" method cannot be overridden by a subclass. • final is used for important logic that should not be changed. public class Account { // don't let subclasses change deposit method public final void deposit(Money amount) { ... }

  34. final method public class Money { public final double getValue( ) { return value; } } public class Coin extends Money { // ERROR public double getValue( ) { ... } Question: Does Object have any final methods?

  35. Inheritance of Attributes 1. subclass object inherits all attributes of the parent class (even the private ones). • subclass cannot directly access privateattributes of the parent -- but they are still part of the object's memory! 2. subclass can shadow attributes of the parent by defining a new attribute with the same name. • shadow creates a new attribute having same name as parent's attribute, but the parent's attributes are still there (just hidden or "shadowed"). • this is rarely used -- not good design.

  36. Inheritance of Attributes B b1 = new B(12345, "baby" ) A private int id public String name In memory... B protected long id private char[] name b1: B long id = 1234567890 char [] name = { 'b','a','b','y' } (hidden) int id = 0 (hidden) String name = "unknown"

  37. How inheritance and run-time "binding" of method names to method code enable polymorphism Inheritance and Polymorphism

  38. Binding of Methods to References • Java determines which instance method should be called for a method name at run-time. • This is called dynamic binding or late binding. • This means that you can't tell which actual method will be called from only the variable type. Object obj = "What am I?"; // obj -> String if (Math.random() > 0.5) obj = new Date( ); // which toString will be used? obj.toString( );

  39. Binding a method name to code Compile Time Binding Compiler "binds" a method name to code using the declaredclass of the variable • most efficient • no polymorphism When is this used? • "final" methods • "final" class • private methods • static methods • constructors • "value" types (C#: struct) Runtime Binding Method is invoked using the actual type of the object. • slower • enables polymorphism When is this used? • Java: all methods except "final", "static", or "private" • C#: only for virtual methods

  40. Overriding Methods and access Q: Can a subclass change the visibility of a method that it overrides? A: a subclass can increasethe visibility of method it overrides, but it cannot decrease the visibility. Method in SuperclassMethod in Subclass public public protected public protected package (default) public protected package private anything

  41. Overriding Methods (1): visibility class BankAccount { public boolean withdraw( double amount ) { .... } } class CheckingAccount extends BankAccount { ??? boolean withdraw( double amount ) { .... } The Test: does polymorphism work? BankAccount b = new BankAccount( "Mine" ); BankAccount c = new CheckingAccount( "Yours" ); b.withdraw( 100 ); // if this is OK c.withdraw( 100 ); // then will this be OK?

  42. Overriding Methods (2): visibility Q: Can a subclass change the visibility (access privilege) of a method that it overrides? • change access from "public" to "protected": class CheckingAccount extends BankAccount { protected void withdraw( double amount ) { if ( amount > balance + overDraftLimit ) { System.out.printf( "Error: you can withdraw at most %f Baht\n", balance+overDraftLimit ); return /*false*/; // cannot withdraw } This method is "public" in the BankAccount class.

  43. Overriding Methods (3): return type class BankAccount { public boolean withdraw( double amount ) { .... } } class CheckingAccount extends BankAccount { public void withdraw( double amount ) { .... } Can a subclass change the return type of overridden method? The Test: does polymorphism work?

  44. Overriding Methods (4): parameters Q: Can a subclass change the type of a parameter of an overridden method? Example: change amount from "double" to "long": class BankAccount { public boolean withdraw( double amount ) {...} .... } } class CheckingAccount extends BankAccount { /** withdraw method for checking account */ public boolean withdraw( long amount ) { ... }

  45. Overriding Methods: parameters Answer: Yes, but then you aren't overriding the method! If the parameter type is different then you are creating a new method with the same name (called "method overloading"). /** test the withdraw method */ public void testWithdraw( ) { CheckingAccount ca = new CheckingAccount("..."); ca.withdraw( 50000 ); // this calls CheckingAccount.withdraw() ca.withdraw( 25000.0 ); // calls BankAccount.withdraw()

  46. Overriding Methods (5): using super Q: Can we access the method of the superclass, even though it has been overridden? • invoke withdraw of BankAccount using "super". class CheckingAccount extends BankAccount { public boolean withdraw( long amount ) { if ( overDraftLimit == 0 ) super.withdraw(amount);// parent's method else if ( amount > balance + overDraftLimit ) System.out.printf("Error: ..."); else balance = balance - amount;

  47. Overriding Methods (6): using super Consider a Person superclass and Student subclass. • (Person) p.compareTo( ) compares people by name • (Student) s.compareTo( ) compares by student ID first and then name. public class Student extends Person { private String studentID; public int compareTo(Object other) { ... // test for null and Student type Student s = (Student) other; int comp = studentID.compareTo(s.studentID); if ( comp != 0 )return comp; // if studentID is same, compare by name return super.compareTo(other);

  48. Redefining Attributes A subclass can declar an attribute with the same name as in the superclass. The subclass attribute hides the attribute from parent class, but it still inherits it! You can see this in BlueJ by "inspecting" an object. public class BankAccount { private long accountId; } SavingAccount has 2 id attributes. The parent attribute is private (not accessible) and hidden by its own attribute. public class SavingAccount extends BankAccount { private String accountId; }

  49. Redefining Attributes The new BankAccount hierarchy is: BankAccount # accountName - accountID - balance + getAccountID() + toString() + withdraw() New method to get accountID SavingsAccount - interestRate + toString( ) : String CheckingAccount - accountId + withdraw( ) : void + toString( ) : String

  50. Questions About Redefined Attributes If a subclass redefines an attribute of the superclass... • can the subclass still access the superclass attribute? • can the subclass change the visibility of the attribute? Example: in CheckingAccount can we declare: private long accountID; • can the subclass change the datatype of the attribute? Example: in CheckingAccount can we declare: protected String accountID;

More Related