1 / 9

OBJECT ORIENTED ANALYSIS & DESIGN

OBJECT ORIENTED ANALYSIS & DESIGN. Vassilka Kirova Department of Computer & Information Science NJIT. Introduction. What is object-oriented? What is an object?. What is Object-Oriented?.

Télécharger la présentation

OBJECT ORIENTED ANALYSIS & DESIGN

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. OBJECT ORIENTEDANALYSIS & DESIGN Vassilka Kirova Department of Computer & Information Science NJIT

  2. Introduction What is object-oriented? What is an object?

  3. What is Object-Oriented? • A system built with object-oriented methods is one whose components are encapsulated chunks of data and function, which can inherit attributes and behavior from other such components, and whose components communicate via messages with each other. <Yourdon> • components = “objects”

  4. “Object” <Martin> • An object is a thing real or abstract about which we store data and those methods which manipulate the data.

  5. “Object” <Jacobson> • An object is characterized by a number of operations and a state which remembers the effect of these operations.

  6. “Object” <OMG> • An object is a thing. • It is created as the instance of an object type. • Each object has a unique identity. • Each objects offers one or more operations.

  7. “Object” <Booch> • An object has • state, • behavior, and • identity. • The structure and behavior of similar objects are defined in their common class. • The terms instance and object are interchangeable.

  8. “Object” <Coad, Yourdon> • OBJECT: An abstraction of something in a problem domain, reflecting the capabilities of the system to keep information about it (attributes, states) and interact with it (services). • CLASS: A collection of one or more objects with a uniform set of attributes and services, including a description of how to create new objects in the class.

  9. Key Characteristics of OO Methods • abstraction <=> generalization-specialization; aggregation-decomposition • inheritance <=> generalization hierarchies • encapsulation <=> data capsule • message passing <=> communication

More Related