Chapter 10 Flashcards
Abstract Data Type
(ADT) A class is also known as an abstract data type.
aggregation
A special form of association that represents an ownership relationship between two classes.
boxing
Converting a primitive value to a wrapper object is called boxing.
class abstraction
A technique in software development that hides detailed implementation. Class abstraction hides the implementation of the class from the client; if you decide to change the implementation, the client program will not be affected.
class encapsulation
Combining of methods and data into a single data structure
class’s contract
Refers to the collection of methods and fields that are accessible from outside a class, together with the description of how these members are expected to behave.
composition
An object that consists of other objects. This is called composition.
has-a relationship
Composition models have a has-a relationship.
multiplicity
Every class involved in a relationship may specify a multiplicity. A multiplicity could be a number or an interval that specifies how many of the class s objects are involved in the relationship
stack
A stack is a data structure that holds objects in a last-in first-out fashion
unboxing
Converting a wrapper object to a primitive value is called unboxing. The reverse conversion is called boxing.