2 Object Oriented Programming

27
WEL COME PRAVEEN M JIGAJINNI PGT (Computer Science) MTech[IT],MPhil (Comp.Sci), MCA, MSc[IT], PGDCA, ADCA, Dc. Sc. & Engg. email: [email protected]

Transcript of 2 Object Oriented Programming

Page 1: 2 Object Oriented Programming

WEL COME

PRAVEEN M JIGAJINNI PGT (Computer Science)

MTech[IT],MPhil (Comp.Sci), MCA, MSc[IT], PGDCA, ADCA, Dc. Sc. & Engg.email: [email protected]

Page 2: 2 Object Oriented Programming

CHAPTER 2

OBJECT ORIENTEDPROGRAMMING

Page 3: 2 Object Oriented Programming

3

INTRODUCTION

This chapter begins with brief discussion of various Programming paradigms that C++ supports i.e., procedural programming style, object based programming style and object oriented programming style. This is followed by detailed discussion of object oriented programming and its implementation. All this shall help you appreciate OOP style and its advantages over other programming methodologies.

Page 4: 2 Object Oriented Programming

What is a Programming Paradigm

A Programming Paradigm defines the methodology of designing and implementing programs using the key features and building blocks of a programming language.

What is a Programming Paradigm

Page 5: 2 Object Oriented Programming

Procedural ProgrammingProcedural programming paradigm

separates the functions and the data manipulated by them. This leads to many problems when it comes to extending the software or maintaining the software.

Procedural Programming is susceptible to design changes.

Procedural Programming leads to increase time and cost overheads during design changes.

Page 6: 2 Object Oriented Programming

6

Object Based ProgrammingObject based programming is a newer

paradigm that implements some features of object oriented programming but not all. In object based programming, data and its associated meaningful functions are enclosed in one single entity a class. Classes enforce information hiding and abstraction thereby separating the implementation details and the uses interface.

Page 7: 2 Object Oriented Programming

7

[For instance, you can consider a calculator, its interface would include a small display screen and a few buttons that is available to the user and implementation details i.e. how actual calculations are taking place are hidden from user.]

Page 8: 2 Object Oriented Programming

Object based programming localizes the implementation details.

Object based programming is subject of Object Oriented programming.

Page 9: 2 Object Oriented Programming

Advantages of Object Based Programming

i. It overcomes most shortcomings of procedural programming,

ii. It localizes changes and hides implementation details from user,

iii. It supports user-defined types,iv. Implements information hiding and

abstraction etc.

Page 10: 2 Object Oriented Programming

Limitations

However, object based programming suffers from a major limitation and that is its inability to represent real world relationships that exist among object.For example, both car and truck are vehicles. This can not be represented in object based programming as it does not support inheritance.

Page 11: 2 Object Oriented Programming

Object Oriented Programming

The object oriented programming paradigm is superset of object based programming. It offers all the features of object based programming and overcomes its limitation by implementing inheritance.

Page 12: 2 Object Oriented Programming

What is an OBJECT ?Object is an identifiable entity with

some characteristics and behaviour.

What is a CLASS ?A class is a group of objects that

share common properties and relationships.

Page 13: 2 Object Oriented Programming

Function 1

Function 2

Function 3

Data 1

Data 2

All data is openly available to all functions in the program

Properties

Behaviour

Properties

Behaviour

Object 1

Object 2

Data and functions enclosed within objects. New objects communicate with one another.

Page 14: 2 Object Oriented Programming

BASIC CONCEPTS OF OOPThese general concepts of OOP are

given below:

Data AbstractionData

EncapsulationModularity

InheritancePolymorphism

Page 15: 2 Object Oriented Programming

Data Abstraction

Abstraction refers to the act of representing essential features without including the background details or explanations.

Page 16: 2 Object Oriented Programming

What is encapsulation ?

The wrapping up of data and operations / functions (that operate on the data) into a single unit (called class) is known as Encapsulation.

Page 17: 2 Object Oriented Programming

Data

MemberFunctions

Data

MemberFunctions

Data

MemberFunctions

Object

Object Object

Page 18: 2 Object Oriented Programming

ModularityThe act of partitioning a program into

individual components is called modularity. The justification for partitioning a program is that

• it reduces its complexity to some degree and

• it creates a number of well-defined, documented boundaries within the program

Page 19: 2 Object Oriented Programming

What is a Modularity ?

Modularity is the property of a system that has been decomposed into a set of cohesive and loosely coupled modules.

Page 20: 2 Object Oriented Programming

Inheritance

Inheritance is the capability of one class of things to inherit capabilities or properties from another class.

Page 21: 2 Object Oriented Programming

Vehicles

Automobiles(Motor driven)

PulledVehicles

Car Bus Cart Rickshaw

Property Inheritance

Page 22: 2 Object Oriented Programming

Polymorphism

Polymorphism is the ability for a message or data to be processed in more than one form.

Page 23: 2 Object Oriented Programming

Circle

Area (circle)

Rectangle

Area (rectangle)

Shape

Area

Triangle

Area (triangle)

Polymorphism

Page 24: 2 Object Oriented Programming

ADVANTAGES of OOP

1. Re-use of code.2. Ease of comprehension.3. Ease of fabrication and maintenance.4. Easy redesign and extension.

Page 25: 2 Object Oriented Programming

25

DISADVANTAGES of OOP

a) With OOP, classes tend be overly generalized.b) The relations among classes become artificial

at times.c) The OOP programs’ design is tricky.d) Also one need to do proper planning and

proper design for OOP programming.e) To program with OOP, programmer need

proper skills such as design skills, programming skills, thinking in terms of objects etc.

PC-22
Created byRahul Kumar Patwari (233)Under the sencere guidance ofMr. Praveen.Computer Teacher,Sainik School, Gopalganj.
Page 26: 2 Object Oriented Programming

?Any Questions Please

Page 27: 2 Object Oriented Programming

Thank YouVery Much