Loading...
C++ OOPs Concepts

C++ OOPs Concepts

In this tutorial, we will learn Object Oriented Programming Concepts. A pattern that avails many concepts like polymorphism, inheritance, data binding etc. is known as the object Oriented Programming.


What is OOP?

OOP stands for Object-Oriented Programming.
Object Oriented Programming (OOP) is commonly used when writing code with C++. It is a concept used in many other programming languages as well and it is important for all programmers to understand.

Object Oriented Programming is a programming paradigm that uses the concepts of objects and classes. It is a standard in programming that is used to solve a specific type of problem. OOP is a way to structure a program using reusable pieces of code (called classes) which can be used to create individual instances of objects.


Key-points and Features of Object Oriented Proggramming:

1. It emphasis more on data rather than procedure.
2. The programs are divided into objects thus making it easy to work with.
3. Data structures are designed in such a way that they characterize the objects.
4. Functions that work on the data of an object are placed together in the data structure.
5. Data is hidden and cannot be accessed by external functions without permission.
6. Communication between objects can take place with the help of functions.
7. Adding new data and functions has become easy.
8. Follows the bottom-up approach in program design.


OOPs (Object Oriented Programming System)

An object simply means an entity of the real word like lunch, phone, bike etc. Object Oriented Programming is basically known to be a pattern that is used to design a program just by the use of objects and classes.

This programming method in C++ generally simplifies the software development and the maintenance by providing some basic concepts that are as follows:

  • Class
  • Objects
  • Inheritance
  • Polymorphism
  • Abstraction
  • Encapsulation
  • Exception Handling

1. Class

A class is basically a logical entity and mainly a collection of objects.

It is similar to structures in C language. Class can also be defined as user defined data type but it also contains functions in it. So, class is basically a blueprint for object. It declare & defines what data variables the object will have and what operations can be performed on the class's object.


2. Object

Objects are the basic unit of OOP. They are instances of class, which have data members and uses various member functions to perform tasks.

Object is basically anything that possesses state and behavior and can be either physical or logical. For example: phone, purse, bike etc.


3. Inheritance

The things or the properties and behaviors are generally acquired by one object from its parent object is known to be the inheritance. It enhances the code reusability and in order to achieve runtime of polymorphism.


4. Polymorphism

Polymorphism is the process where one task gets performed by various ways. In order to achieve the polymorphism in C++ , function overloading and function overriding is used.


5. Abstraction

Abstraction is generally known as the process of hiding internal details and displaying the functionality. Abstract class and interface is used to get the abstraction in C++.


6. Encapsulation

Encapsulation is basically binding or wrapping the code and the data into a single unit.

Binding (or wrapping) code and data together into a single unit is known as encapsulation. For example: capsule, it is wrapped with different medicines.


7. Exception Handling

Exception handling is a feature of OOP, to handle unresolved exceptions or errors produced at runtime.


Advantage of OOPs over Procedure-oriented Programming Language

1. OOP is faster and easier to execute.
2. OOP provides a clear structure for the programs.
3. OOP helps to keep the C++ code DRY "Don't Repeat Yourself", and makes the code easier to maintain, modify and debug.
4. OOP makes it possible to create full reusable applications with less code and shorter development time.


Next Tutorial

We hope that this tutorial helped you develop better understanding of the concept of OOPs Concept in C++.

Keep Learning : )

In the next tutorial, you'll learn about C++ Objects & Class.

- Related Topics