object oriented programming (oop) - cs304 power point slides lecture 03

29
Object-Oriented Object-Oriented Programming (OOP) Programming (OOP) Lecture No. 3 Lecture No. 3

Upload: muhammad-abbas

Post on 16-Oct-2014

162 views

Category:

Documents


11 download

TRANSCRIPT

Page 1: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Object-Oriented Object-Oriented Programming (OOP)Programming (OOP)

Lecture No. 3Lecture No. 3

Page 2: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

AbstractionAbstraction

►Abstraction is a way to cope with Abstraction is a way to cope with complexity.complexity.

►Principle of abstraction:Principle of abstraction:

““Capture only those details about an object Capture only those details about an object that are relevant to current perspective”that are relevant to current perspective”

Page 3: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – AbstractionExample – Abstraction

►AttributesAttributes- Name- Name - Employee - Employee

IDID- Student Roll No- Student Roll No - Designation- Designation- Year of Study- Year of Study - Salary- Salary- CGPA- CGPA - Age- Age

Ali is a PhD student and teaches BS students

Page 4: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – AbstractionExample – AbstractionAli is a PhD student and teaches BS students

►behaviourbehaviour- Study- Study - DevelopExam- DevelopExam- GiveExam- GiveExam - TakeExam- TakeExam- PlaySports- PlaySports - Eat- Eat- DeliverLecture- DeliverLecture - Walk- Walk

Page 5: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – AbstractionExample – Abstraction

►AttributesAttributes- Name- Name - Employee - Employee

IDID- Student Roll No- Student Roll No - Designation- Designation- Year of Study- Year of Study - Salary- Salary- CGPA- CGPA - Age- Age

Student’s Perspective

Page 6: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – AbstractionExample – AbstractionStudent’s Perspective

►behaviourbehaviour- Study- Study - DevelopExam- DevelopExam- GiveExam- GiveExam - TakeExam- TakeExam- PlaySports- PlaySports - Eat- Eat- DeliverLecture- DeliverLecture - Walk- Walk

Page 7: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – AbstractionExample – Abstraction

►AttributesAttributes- Name- Name - Employee - Employee

IDID- Student Roll No- Student Roll No - Designation- Designation- Year of Study- Year of Study - Salary- Salary- CGPA- CGPA - Age- Age

Teacher’s Perspective

Page 8: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – AbstractionExample – AbstractionTeacher’s Perspective

►behaviourbehaviour- Study- Study - DevelopExam- DevelopExam- GiveExam- GiveExam - TakeExam- TakeExam- PlaySports- PlaySports - Eat- Eat- DeliverLecture- DeliverLecture - Walk- Walk

Page 9: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – AbstractionExample – Abstraction

►Ordinary PerspectiveOrdinary PerspectiveA pet animal withA pet animal with Four LegsFour Legs A TailA Tail Two EarsTwo Ears Sharp TeethSharp Teeth

►Surgeon’s PerspectiveSurgeon’s PerspectiveA being withA being with A SkeletonA Skeleton HeartHeart KidneyKidney StomachStomach

A cat can be viewed with different perspectives

Page 10: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – AbstractionExample – Abstraction

Driver’s View

Engineer’s View

Page 11: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Abstraction – AdvantagesAbstraction – Advantages

►Simplifies the model by hiding Simplifies the model by hiding irrelevant detailsirrelevant details

►Abstraction provides the freedom to Abstraction provides the freedom to defer implementation decisions by defer implementation decisions by avoiding commitment to detailsavoiding commitment to details

Page 12: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

ClassesClasses

► In an OO model, some of the objects In an OO model, some of the objects exhibit identical characteristics exhibit identical characteristics (information structure and behaviour)(information structure and behaviour)

►We say that they belong to the same We say that they belong to the same classclass

Page 13: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – ClassExample – Class►Ali studies mathematicsAli studies mathematics►Anam studies physicsAnam studies physics►Sohail studies chemistrySohail studies chemistry

►Each one is a StudentEach one is a Student►We say these objects are We say these objects are instancesinstances of of

the Student classthe Student class

Page 14: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – ClassExample – Class►Ahsan teaches mathematicsAhsan teaches mathematics►Aamir teaches computer scienceAamir teaches computer science►Atif teaches physicsAtif teaches physics

►Each one is a teacherEach one is a teacher►We say these objects are We say these objects are instancesinstances of of

the Teacher classthe Teacher class

Page 15: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Graphical Representation of Graphical Representation of ClassesClasses

(Class Name)

(attributes)

(operations)

(Class Name)

Normal Form

Suppressed Form

Page 16: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – Graphical Example – Graphical Representation of ClassesRepresentation of Classes

CirclecenterradiusdrawcomputeArea

Normal Form

Suppressed Form

Circle

Page 17: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – Graphical Example – Graphical Representation of ClassesRepresentation of Classes

Personnameagegendereatwalk

Normal Form

Suppressed Form

Person

Page 18: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

InheritanceInheritance

►A child inherits characteristics of its A child inherits characteristics of its parentsparents

►Besides inherited characteristics, a Besides inherited characteristics, a child may have its own unique child may have its own unique characteristicscharacteristics

Page 19: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Inheritance in ClassesInheritance in Classes► If a class B inherits from class A then it If a class B inherits from class A then it

contains all the characteristics contains all the characteristics (information structure and behaviour) of (information structure and behaviour) of class Aclass A

►The parent class is called The parent class is called basebase class and class and the child class is called the child class is called derivedderived class class

►Besides inherited characteristics, derived Besides inherited characteristics, derived class may have its own unique class may have its own unique characteristicscharacteristics

Page 20: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – InheritanceExample – Inheritance

Person

TeacherDoctorStudent

Page 21: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – InheritanceExample – Inheritance

Shape

CircleTriangleLine

Page 22: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Inheritance – “IS A” orInheritance – “IS A” or“IS A KIND OF” Relationship“IS A KIND OF” Relationship

►Each derived class is a special kind of Each derived class is a special kind of its base classits base class

Page 23: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – “IS A” Example – “IS A” RelationshipRelationship

Personnameagegendereatwalk

TeacherdesignationsalaryteachtakeExam

StudentprogramstudyYearstudyheldExam

DoctordesignationsalarycheckUpprescribe

Page 24: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example – “IS A” Example – “IS A” RelationshipRelationship

ShapecolorcoorddrawrotatesetColor

CircleradiusdrawcomputeArea

Linelengthdraw

TriangleangledrawcomputeArea

Page 25: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Inheritance – AdvantagesInheritance – Advantages

►ReuseReuse

►Less redundancyLess redundancy

► Increased maintainabilityIncreased maintainability

Page 26: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Reuse with InheritanceReuse with Inheritance►Main purpose of inheritance is reuseMain purpose of inheritance is reuse►We can easily add new classes by We can easily add new classes by

inheriting from existing classesinheriting from existing classes Select an existing class closer to the Select an existing class closer to the

desired functionalitydesired functionality Create a new class and inherit it from the Create a new class and inherit it from the

selected classselected class Add to and/or modify the inherited Add to and/or modify the inherited

functionalityfunctionality

Page 27: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example ReuseExample ReuseShape

colorcoorddrawrotatesetColor

CircleradiusdrawcomputeArea

Linelengthdraw

TriangleangledrawcomputeArea

Page 28: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example ReuseExample ReusePerson

nameagegendereatwalk

TeacherdesignationsalaryteachtakeExam

StudentprogramstudyYearstudyheldExam

DoctordesignationsalarycheckUpprescribe

Page 29: Object Oriented Programming (OOP) - CS304 Power Point Slides Lecture 03

Example ReuseExample ReusePerson

nameagegendereatwalk

TeacherdesignationsalaryteachtakeExam

StudentprogramstudyYearstudyheldExam

DoctordesignationsalarycheckUpprescribe