CSIT_Labs

Object Oriented Programming using C++

Table of Contents

Introduction

Object-oriented programming (OOP) was developed to overcome the limitations of the procedure-oriented programming is an improved technique for developing the programs.

In case of OOP, the data is treated as the most critical element and the primary focus is on the data and not on the procedures. In this technique, the data is grouped together with the functions that operate on it.

The data cannot be accessed directly by the other objects of the program. It can only be accessed through a proper interface such as functions.

Examples of OOP languages include Simula, C++, Python, Java etc.

Characteristics/Features of OOP

  1. Objects
  2. Classes
  3. Encapsulation
  4. Abstraction
  5. Inheritance
  6. Polymorphism

Objects

Classes

Encapsulation

Abstraction

Inheritance

Polymorphism

Benefits of OOP