The essence of objects
1 The essence of objects
 

The essence of objects

CS 3500, Spring 2016

The Object Model

The Object Model outside software

  • We think of the computer as “one unit”

  • Set of components working together

    • A well-defined purpose

      • RAM: temp memory

      • Disk drive: perm memory

      • Processor: process

    • A well-defined boundary

      • RAM doesn’t process

      • Disk doesn’t cool system

The Object Model outside software

  • Hospital has various departments

    • Each department has well-defined purpose

      • Orthopedics

      • Cardiac Unit

    • Each department has a well-defined boundary

      • Cardiac unit doesn’t treat fractures

  • To a patient, the hospital is one unit

How are objects defined?

The object model

The object model

Object-oriented Methodology:
Abstraction

Object-oriented Methodology:
Abstraction

Object-oriented Methodology:
Abstraction

Object-oriented Methodology:
Abstraction in Design

Object-oriented Methodology:
Standardizing an Abstraction

Object-oriented Methodology
Abstraction and Hierarchy

  • Creating a hierarchy...

    • System

      • Sub-systems

        • Components

          • Objects

  • Each level of the hierarchy exposes more details than the one above

  • Provides for the proper level of understanding

Object-oriented Analysis and Design by Grady Booch

Object-oriented Methodology
Encapsulation

Object-oriented Methodology
Information Hiding

Object-oriented Methodology
Cohesion

Object-oriented Methodology
Decoupling

Characteristics of a Well-Designed Object-Oriented System

How does all of this improve our lives?

Advantages of the Object Model

Advantages of the Object Model:
Division into components

Advantages of the Object Model:
Well-defined interactions

Advantages of the Object Model:
Code re-use

Advantages of the Object Model:
Easier System Integration

Advantages of the Object Model:
Applicable to all types of subsystems