1 / 24

Composition, Aggregation, and Inheritance - Introduction

Composition, Aggregation, and Inheritance - Introduction. Prior to this chapter, all of our objects have been relatively simple, so we've been able to describe each object with just a single class. This is the natural approach when the attributes are all simple elements. Composition.

joshua
Télécharger la présentation

Composition, Aggregation, and Inheritance - Introduction

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. Composition, Aggregation, and Inheritance - Introduction SE-1020 Dr. Mark L. Hornick

  2. Prior to this chapter, all of our objects have been relatively simple, so we've been able to describe each object with just a single class. This is the natural approach when the attributes are all simple elements.

  3. Composition For an object that's more complex (non-trivial attributes), break up the object into its constituent parts and defining one class as the wholeand other classes as parts of the whole. • When the whole class is the exclusive owner of the parts classes, then that class organization is called a composition. Note the “solid” diamond!

  4. A nested composition hierarchy for the human body:

  5. Composition semantics • In a composition hierarchy, the relationship between a containing class and one of its part classes is known as a has-arelationship. • For example, each human body has a brain and has a heart. • An automobile has an engine and has wheels. • Remember that with a composition relationship, a component part is limited to just one owner at a time. • For example, a heart can be in only one body at a time. • An engine can only be in one automobile at a time.

  6. Composition vs. Aggregation • There's another has-a relationship, called aggregation, which is a weaker form of composition. With aggregation, one class is the whole and other classes are parts of the whole (as with composition), but there is no additional constraint that requires parts to be exclusively owned by the whole. • An example where the parts (Students) are not exclusively owned by the whole, because the Student can also be part of another aggregation, like a School Club or Athletic Team. Note the “hollow” diamond!

  7. UML Class Diagram details for Composition and Aggregation • Universal Modeling Language (UML) Class diagrams show the relationships between a program's classes: • A solid line between two classes represents an association – a relationship between classes. • On an association line, a solid diamond indicates a composition relationship, and a hollow diamond indicates an aggregation relationship. The diamond goes next to the container class. • a simple straight line is an unspecified association • The labels on the association lines are called multiplicity values. They indicate the number of object instances for each of the two connected classes. • The * multiplicity value represents any size number, zero through infinity.

  8. UML Class Diagram illustrating “dependency” • Suppose the computeInterest() method of BankAccount uses the pow() method of the Math class • When a class merely “uses” another class, that relationship is called a dependency and is illustrated with a dotted line • A dotted line between two classes represents an dependency • A dependency line contains an arrow which points to the class (Math) that the other class (BankAccount) depends upon. • It is not always necessary to illustrate dependencies

  9. Classes with family ties Sometimes we find that two (or more) classes could be related to each other in the sense that • They are not the exactly the same, but they are not completely different either • One of the classes is a “special case” of the other, and needs to behave a little differently Examples: Class Automobile is a special case of class Vehicle Class Beagle is a special case of Class Dog This type of class relationship is called Inheritance SE-1020 Dr. Mark L. Hornick

  10. Inheritance Example - People in a Department Store Here's a UML class diagram for an inheritance hierarchy that keeps track of people in a department store: The Person class is generic - it contains data and methods that are common to all classes in the hierarchy. As you go down the hierarchy, the classes get more specific. For example, the Customer and Employee classes describe specific types of people in the store.

  11. Inheritance Terminology • Within an inheritance hierarchy, pairs of classes are linked together. For each pair of linked classes, the more generic class is called the superclass and the more specific class is called the subclass. • We say that subclasses are derived from superclasses. That makes sense when you realize that subclasses inherit all of the superclass's data and methods. • Unfortunately, the terms superclass and subclass can be misleading. The "super" in superclass could imply that superclasses have more capability and the "sub" in subclass could imply that subclasses have less capability. Actually, it's the other way around - subclasses have more capability. Subclasses can do everything that superclasses can do, plus more. • In fact, a subclass must be capable of doing everything a superclass does, and should never violate the Liskov Substitution Principle • We'll stick with the terms superclass and subclass since those are the formal terms used by Sun, but be aware of this alternative terminology: • Programmers often use the terms parent class or base class when referring to a superclass. • Programmers also use the terms child class or derived class when referring to a subclass.

  12. The Java mechanism for defining a inheritance relationship between two classes is called extension: In Dog.java: public class Dog{…} In Beagle.java: public class Beagle extendsDog{…} The extends keyword establishes the inheritance relationship • extends means “is a kind of” SE-1020 Dr. Mark L. Hornick

  13. Usually, UML class diagrams show superclasses above subclasses. That's a common practice, but not a requirement. The following is a requirement…. • UML class diagrams use an arrow for inheritance relationships, with a hollow arrowhead pointing to the superclass. Warning: The direction of arrows in UML class diagrams is opposite to the direction in which inheritance flows. In the diagram the Beagle class inherits the name variable from the Dog class. And yet the arrow does not go from Dog to Beagle; it goes from Beagle to Dog. That's because the arrow points to the superclass, and Dog is the superclass. UML class diagram review: What are the class boxes' minus signs for? What are the class boxes' third compartments for?

  14. Benefits of Inheritance It helps with code reusability - • A superclass's code can be used for multiple subclasses. • That eliminates code redundancy and makes debugging and upgrading easier. • A programmer can use an existing class to easily create a new subclass (no need to "reinvent the wheel.") Smaller modules (because classes are split into superclasses and subclasses) - • That makes debugging and upgrading easier. 1 2

  15. Rules of inheritance All attributes and methods defined in a superclassare inherited by all subclasses • Except for constructors!!! But: Onlyprotected and public attributes and methods defined in the superclassare accessible in the subclasses • meaning only those superclassattributes are visible to the subclasses • And only those superclassmethods are callable by the subclasses • Package attributes and methods are accessible only if the subclass is in the same package as the superclass methodA() can onlyaccess these attributes and methodsof the superclass • Everything except the private members of the superclass is visible from a method of the subclass • Privatemethods and attributes defined in a superclass are only accessible within the superclass itself SE-1020 Dr. Mark L. Hornick

  16. Visibility from other classes • SomeOtherClass’sdoSomething() method can only access the public attributes and methods of Superclass: • publicAttr • publicMethod() • and methodA() of Subclass • Package attributes and methods are accessible if SomeOtherClassis in the same package as Superclass and Subclass SE-1020 Dr. Mark L. Hornick

  17. Inheritance and Constructors • Unlike attributes and regular methods of a superclass, constructors of a superclass are not inherited by its subclasses • You must define a constructor for a subclass • or let the compiler add a default subclass constructor SE-1020 Dr. Mark L. Hornick

  18. There are many cases in which a subclass may want to utilize the behavior implemented in a superclass constructor • So that the subclass does not have to completely reimplement the same behavior • …which, remember, is not inherited • For example, if the Dog class has the following constructor: public void Dog(String name, int age) { // Dog initialization goes here } • Within the Beagle class: public void Beagle(String name, int age) {super(name, age); // invoke Dog ctor // other statements can go here, but the FIRST statement // must be the invocation of the superclassctor } SE-1020 Dr. Mark L. Hornick

  19. If a superclass has only a default constructor public void BaseClass(){ // initialization code here } • Within the derived class: public void DerivedClass() {super(); // invoke BaseClass default ctor } SE-1020 Dr. Mark L. Hornick

  20. Actually, the invocation of a superclass’sdefault constructor is performed automatically when… • A subclass does not explicitly invoke it’s superclass constructor • If the subclass does not contain a constructor method at all SE-1020 Dr. Mark L. Hornick

  21. A subclass constructor must invoke a superclass constructor whenever: • The superclass does not contain a default constructor • Private inherited attributes of the superclass need to be initialized SE-1020 Dr. Mark L. Hornick

  22. A subclass method can redefine a superclass method This is called overriding a method • Do not confuse with method overloading (which is where a class implements multiple methods having the same name but different parameters) • A subclass overrides a superclass method to provide a specialized behavior Beagle provides it’s own custom implementation of speak() SE-1020 Dr. Mark L. Hornick

  23. Method overriding is when a subclass has a method with the same name and the same parameter types as a method in its superclass. If a subclass contains an overriding method: • By default, an object of the subclass will use the subclass's overriding method (and not the superclass's overridden method). • Sometimes, an object of the subclass may need to call the superclass's overridden method. To do that, preface the method call with "super." (don't forget the dot). If a subclass and a superclass have methods with the same name, same parameter types, and different return types, that generates a compilation error.

  24. Methods modified with the final keyword cannot be overridden • We declare a method finalif we want to prevent subclasses from changing the behavior of the method via an override. Similarly, classes modified with the final keyword cannot be extended. • We declare a class to be finalif we want to prevent subclasses from extending that class. CS-1020 Dr. Mark L. Hornick

More Related