Top Banner
OOP (Object Oriented Programming) A Presentation By: Rasim Izhar Ali BECS/S13/0109
23
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Characteristics of oop

OOP (Object Oriented Programming)

A Presentation By:Rasim Izhar AliBECS/S13/0109

Page 2: Characteristics of oop

What is OOP?Object Oriented Programming (OOP) is a programming technique in which programs are written on the basis of objects.

Examples: C++ PHP Java Objective-C

Page 3: Characteristics of oop

Classes And Objects

Page 4: Characteristics of oop

Classes(Classification Of Objects)

A class is a group of objects with same attributes and behavior. The characteristics of a class

are :

A name Attributes Behaviour

Page 5: Characteristics of oop

What is Object?• An object represents an entity in the real

world such as a person , thing or concept etc.• An object is identified by its name. All object have these characteristics : Identity State Behaviour

Page 6: Characteristics of oop

ReusabilityExtensibility Decomposability Compos ability Understandability Security

Benefits Of OOP

Page 7: Characteristics of oop

Characteristics Of OOP

Page 8: Characteristics of oop

Characteristics Of OOP

Inheritance Data Abstraction Data Encapsulation Polymorphism

Page 9: Characteristics of oop

Inheritance

Page 10: Characteristics of oop

InheritanceA programming technique that is used to reuse an existing class to build a new classis known as inheritance.

Page 11: Characteristics of oop

Categories Of Inheritance1) Single Inheritance:

In Single Inheritance, the child class inherits all data members and member functions of the base class.

2) Multiple Inheritance:In Multiple Inheritance, the child class inherits all data members and member function of base class.

Page 12: Characteristics of oop

Types Of Inheritance1) Public Inheritance:

In public inheritance, the access status of parent class members in the derived class remains the same.

• The public members of parent class become public members of derived class.

• The private members of parent class become private members of derived class.

• The protected members of parent class become protected members of derived class.

Page 13: Characteristics of oop

2) Protected Inheritance:In protected inheritance, the access status of parent class members in derived class is restricted.

• The public members of parent class become protected members of derived class.

• The protected members of parent class become protected members of derived class.

• The private members of parent class become private members of derived class.

Page 14: Characteristics of oop

3) Private Inheritance:In private inheritance, the access status of parent class members in the derived class is restricted.

• The private members of parent class become the private members of derived class.

• The public members of parent class become the private members of derived class.

• The protected members of parent class become the private members of derived class.

Page 15: Characteristics of oop

Data Abstraction

Page 16: Characteristics of oop

Data Abstraction Data abstraction or information hiding refers to providing only essential information to the outside world and hiding their background details.

Page 17: Characteristics of oop

Advantages Of Data Abstraction

Simplification of software development. Testing and debugging. Reusability. Security. Modifications to the representation of a data

type.

Page 18: Characteristics of oop

Data Encapsulation

Page 19: Characteristics of oop

Data EncapsulationData Encapsulation is an Object Oriented Programming concept that binds together the data and functions that manipulate the data and that keep both safe from outside interference and misuse.

Page 20: Characteristics of oop

Polymorphism

Page 21: Characteristics of oop

What is Polymorphism?The word polymorphism is a combination of two words poly and morphism. Poly means many and morphism means form. In object-oriented programming, polymorphism is the ability of objects of different types to respond to functions of the same name. The user does not have to know the exact type of the object in advance. The behavior of the object can be implemented at run time.

Page 22: Characteristics of oop

Types Of Polymorphism

Virtual functions. Operator overloading. Function overloading.

Page 23: Characteristics of oop

Thank you