×

C++ Data Abstraction

Object-oriented programming (OOP) provides a number of characteristics that enable programmers to design programmes based on a variety of ideas, reducing errors and increasing program flexibility. The abstraction of data is one of the traits of object-oriented programming. This chapter explains how the C++ program implements the idea of data abstraction.

What does Abstraction mean :

Abstraction is an object-oriented programming method in which we hide implementation details from the user and only show the user the interface that is necessary.

Let's consider an Air Conditioner as an example. We have a remote control for controlling different AC operations such as start, stop, temperature increase/decrease, humidity control, and so on. We can control these operations simply by pressing a button, however these functions are performed using complicated logic on the inside.

As an end user, however, we are only exposed to the remote interface, not the implementation specifics of all of these services.

Abstraction is one of the main components of object-oriented programming, and it underpins practically all OOP solutions, i.e. the distinction of interface and execution details in the code.

C++ Data Abstraction

In this figure, we've shown an object and its contents as a graphical representation in the figure above. The basic functionality of this object is visible as the object's innermost layer, followed by the implementation details.

These two levels (albeit in most situations there is only one) are not visible to the outside world in OOP. The interface, the object's outermost layer, is the layer that allows the end user to access the object's capabilities.

They reveal adequate public methods to the external world to let users to play around with the object's functionality and data.

Simpler example can be when a state without understanding how the class is internally implemented. The pow() function, for example, is used to calculate a number's power without knowing the algorithm it employs.

Another relatable real life example of data abstraction can be when we consider the case of a man at the wheel of an automobile. The man only has a basic knowledge that on pressing the accelerator the car's speed will be increased and that applying the brakes will stop it, but he has totally no knowledge how about how the speed is increased by pressing the accelerators, nor does he have any clues regarding the car's inner mechanism or how the accelerator, brakes, and other controls are executed in the car.

In actuality, the fundamental functionality of sorting methods might change from library release to library release. Until and unless the interface remains the same, your function call will work perfectly.

As a result, any modifications made to the object's deepest levels are undetectable to an end user as long as the user's interface remains unchanged.

Types of Abstraction in C++ :

The Abstraction in C++ can be divided into mainly 2 categories, which are –

Data Abstraction –

The goal of data abstraction is to keep the information on the data hidden.

Control Abstraction -

The Control Abstraction mainly focusses on obfuscating the details of the implementation.

Abstraction Implementation in C++ :

C++ has a lot of abstraction support. Even the library functions we utilise in C++ may be thought of as an example of abstraction.

In C++, the implementation of abstraction may be represented as follows:

C++ Data Abstraction

We may implement abstraction in C++ in two methods, as indicated in the diagram above:

Using Access Specifiers and Classes –

A C++ class having the access specifierspublic, private, and protected might be called an abstraction implementation.

The usage of access specifiers helps to manage the access allowed to class members, as we already know. Some members can be made private, making them not accessible by any external class. Some members can be marked as protected, making them only available to derived classes. Finally, we can make some members public, which will further allow them to be accessed from anywhere outside of the class.

We may use this concept to build abstraction in such a manner that the implementation details are concealed from the outside world using the private access specifier, while the interface is accessible using the public specifier.

As a result, we may construct abstraction in C++ by combining data and functions into a single unit and controlling access to this data and functions using access specifiers.

To show this, let's use the following example –

Example:

#include <iostream>
#include <string>
using namespace std;
class samples
{
   int nmbr1,nmbr2;
  
   void readNmbr(){
   cout<<"Enter nmbr1 : "; cin>>nmbr1;
   cout<<"\nEnter nmbr2 : "; cin>>nmbr2;
}
  
public:
void showSum()
{
   readNmbr();
   cout<<"\nSum of 2 nos. = "<<nmbr1+nmbr2<<endl;
}
  
};
int main()
{
   samples s;
   s.showSum();
}

Output :

Enter nmbr1 : 5
Enter nmbr2 : 11
Sum of 2 nos. = 16

Explanation :

In this example, we have an example class in the preceding code with two int variables, nmbr1 and nmbr2. It also contains the readNmbr and showSum methods. The class's nmbr1 and nmbr2 data elements, as well as the method readNmbr, are all private.

The class's showSum method is public. We construct a sample object in the main function and call showSum, which reads the two values and outputs their sum.

This is how the abstraction is put into practise. Only one function is visible to the public, while the rest of the data members and functions are hidden. Though this is simply an example of abstraction, we may have several degrees of abstraction in C++ when solving real-world situations.

Using the Implementation of Header Files –

In a C++ application, header files are used to import and utilise built - in functions. The #include directive is used to include header files inside our code.

Taking an example, the functions cin and cout, were used in the above code. We just have a basic understanding of how to utilise these functions and what parameters they require.

We don't know what happens in the backend when these functions are invoked or how the iostream header file implements them. C++ provides another another abstraction method.

We don't know how all of the functions that we import from the header files are implemented.

Here's another example of abstraction in action –

Example:

#include <iostream>
#include <string>
using namespace std;
class empl{
   int emplno;
   string names;
   double income,basics,allowance;
  
   double calcSalary(int emplno){
   income = basics+allowance;
   return income;
}
public:
empl(int emplno, string names,double basics,double allowance):
emplno(emplno),names(names),basics(basics),allowance(allowance){
   calcSalary(emplno);
}
  
void show(){
  
   cout<<"Emplno = "<<emplno<<"\tName = "<<names<<endl;
   cout<<"Employee Income = "<<income;
  
}
};
int main()
{
   empl emp(2,"Raj",17000,3456.78);
   emp.show();
   
}

Output :

Emplno = 2 Name = Raj
Employee Income = 20456.78

Explanation :

In the above example, we've created a class empl with private information such as an emplno, a names, and income information such as basics and allowance. We also build a private function called "calcSalary" that calculates the salary based on the basic pay and allowances.

A function is used to set up all of the data for a specific empl object. To compute the pay of the current employee, we use the method "calcSalary" from the function.

Then there's the "show" function, which shows the emplno, names, and income. We construct an empl object in the main function and call the show method.

The amount of abstraction that we have offered in this application is readily visible. By making them private, we've concealed all of the employee information as well as the calcSalary function from the user.

We have provided only one function show to the user, which provides all information about the empl object while also hiding aspects like as private data and how we compute the employee's compensation.

We won't have to update the display function in the future if we want to add new data or change the way the income is computed because of this. These modifications will go unnoticed by the user.

Benefits of Abstraction :

Some of the benefits of abstraction are described below –

  • There is no requirement for the programmer to create low-level code.
  • Abstraction guards against unauthorised usage and flaws in the internal implementation.
  • Abstraction may reduce code duplication, reducing the need for the programmer to repeat the same activities.
  • Abstraction encourages code reuse while also accurately categorising class data members.
  • The programmer can alter the private information of the class architecture without impacting the outer layer activities, as long as the end-user is unaware of the changes.

Strategy for Design :

The interface and implementation sections of the code were separated through Data Abstraction. As a result, we should keep the implementation as is while developing the code. That is, the interface should be decoupled from the implementation. It's even useful for preventing code duplication.

As a result, we may reuse the code while changing the implementation, which helps safeguard the data from the external world.

Epilogue :

Abstraction is amongst the most fundamental ideas in OOP, and it is thoroughly implemented in C++. We can hide the program's implementation specifics behind abstraction and only disclose the details we wish to the outside world.

We may construct abstract data types and classes that operate as a skeleton for the coding solution over which a whole solution is developed utilising the abstraction notion. We'll get to know more about these types and classes as we continue through the OOP subjects further.


Related Topics

Single level Inheritance

Inheritance is a fundamental element of C++’s Object-Oriented Programming (OOP). It allows a class (called the derived class) to inherit characteristics and attributes from another class (called the base class)....

5 minutes read.

Function Pointer in C++

Definition: A function pointer in C++ is the same as a usual pointer which is used to point some variables. Function pointers are used to point functions or say store the...

4 minutes read.

C++ Mutable keyword

C++ mutable keyword Mutable class storage specifier in C++ Storage class specifiers in C are auto, register, static, and external. Typedef is also considered as a specifier of the storage...

4 minutes read.

Reserved Keywords in C++

What are reserved keywords in C++? There are a few keywords that cannot be used as identifiers as those words are reserved for some other purposes, such keywords are called reserved...

15 minutes read.

Dynamic Memory Allocation in C++

In some programming situations, the number of data items changes as the program is running, which is known as dynamic data or input. Consider a real-world situation where a program...

3 minutes read.

C++ Type Casting

The type casting of variables in the C++ programming language will be covered in this section. The term "type casting" describes how software converts one data type to another. There...

9 minutes read.

C++ File Handling

File handling is a mechanism that manipulates the data stored in files. File handling store output data from the program to external file and read file data to the program. There...

3 minutes read.

C++ Virtual Function

A virtual function is such function which is declared inside the base class and redefined by the derive class. C++ uses a virtual keyword to make a function as a virtual function. The virtual...

1 minute read.

Delete Operator in C++

Overview We can reserve allocation for a variable or an array at runtime in C++. Dynamic memory allocation is the term for this. After utilising a variable in C++, we must...

4 minutes read.

Inheritance in C++ vs Java

Just like we inherit traits from our parents, object-oriented programming has a concept called inheritance. In terms of object-oriented programming, a class's traits and behaviours, or its data and methods,...

4 minutes read.

Learn C++ Tutorial

C++ Introduction C++ is an object-oriented programming language. It was developed by Bjarne Stroustrup at AT&T Bell Laboratories. It is superset (extension) of C programming language. Depending upon features supported by programming...

10 minutes read.

How to create the Processes with Fork in C++

 In this article, we are going to explain the different methods that help us to create processes with a fork(). There are two methods to do so. These methods are...

2 minutes read.

How to declare a 2D array dynamically in C++

In this article, we will learn how to declare the dynamic array in C++. We also learn the initialization of a 2D array using a pointer in C++. Here, we...

3 minutes read.

How to call a void function in C++

Generally, any function has two types: 1. Void function: It doesn't return any value. 2. Non-void function: It returns some value. Program to call a void function in C++ #include <iostream> using namespace std;  void check() {  ...

2 minutes read.

C++ Call by Value

In this article, we will discuss C++ Call by Value with their syntax, examples, use cases, advantages, and disadvantages. C++ Function A function is a set of statements that executes a task....

5 minutes read.

Vector in C++

Vector in C++ In today’s article, we will be learning all the things about vector in C++ and how vector is different form an array in C++. So basically, vector is very...

3 minutes read.

How to run program in turbo c++

What is Turbo C++? Turbo c++ is an integrated development environment (IDE) and a compiler to run C++ code. Turbo c++ helps to link the header files with the main code....

2 minutes read.

Diamond Pattern in C++ using For Loop

For Loop: A for loop is a repetitive control structure that allows you to create a loop for executing a specific number of times. The syntax of for loop: In C++, a for...

5 minutes read.

Lexicographically Next Permutation in C++

In this tutorial, we'll look at how to use C++ to generate the lexicographically next permutation of a string. The lexicographically next permutation is the larger permutation. "ACB," for example,...

3 minutes read.

Substring in C++

A substring is a function in c++ that is imported from the string library. An element of a string is called a substring. A substring contains two parameters length and...

2 minutes read.