Abstraction In OOPs | Learn With Java Example

What is Abstraction in OOP?

Abstraction is selecting data from a larger pool to show only the relevant details to the object. It helps to reduce programming complexity and effort. In Java, abstraction is accomplished using Abstract classes and interfaces. It is one of the most important concepts of OOPs.

Let’s Study Abstraction concept with an Example

Suppose you want to create a banking application and you are asked to collect all the information about your customer. There are chances that you will come up with following information about the customer

image

But, not all of the above information is required to create a banking application.

So, you need to select only the useful information for your banking application from that pool. Data like name, address, tax information, etc. make sense for a banking application

image

Since we have fetched/removed/selected the customer information from a larger pool, the process is referred as Abstraction.

However, the same information once extracted can be used for a wide range of applications. For instance, you can use the same data for hospital application, job portal application, a Government database, etc. with little or no modification. Hence, it becomes your Master Data. This is an advantage of Abstraction.

How to achieve Abstraction?

Abstraction in Java can be achieved using Abstract Class and Abstract Method.

Abstract Class

A class which is declared “abstract” is called as an abstract class. It can have abstract methods as well as concrete methods. A normal class cannot have abstract methods.

Abstract Method

A method without a body is known as an Abstract Method. It must be declared in an abstract class. The abstract method will never be final because the abstract class must implement all the abstract methods.

Rules of Abstract Method

  • Abstract methods do not have an implementation; it only has method signature
  • If a class is using an abstract method they must be declared abstract. The opposite cannot be true. This means that an abstract class does not necessarily have an abstract method.
  • If a regular class extends an abstract class, then that class must implement all the abstract methods of the abstract parent

Difference between Abstraction and Encapsulation

Abstraction Encapsulation
Abstraction solves the issues at the design level. Encapsulation solves it implementation level.
Abstraction is about hiding unwanted details while showing most essential information. Encapsulation means binding the code and data into a single unit.
Abstraction allows focussing on what the information object must contain Encapsulation means hiding the internal details or mechanics of how an object does something for security reasons.

Difference between Abstract Class and Interface

Abstract Class Interface
An abstract class can have both abstract and non-abstract methods. The interface can have only abstract methods.
It does not support multiple inheritances. It supports multiple inheritances.
It can provide the implementation of the interface. It can not provide the implementation of the abstract class.
An abstract class can have protected and abstract public methods. An interface can have only have public abstract methods.
An abstract class can have final, static, or static final variable with any access specifier. The interface can only have a public static final variable.

Advantages of Abstraction

  • The main benefit of using an abstract class is that it allows you to group several related classes as siblings.

  • Abstraction helps to reduce the complexity of the design and implementation process of software.

When to use Abstract Methods & Abstract Class?

Abstract methods are mostly declared where two or more subclasses are also doing the same thing in different ways through different implementations. It also extends the same Abstract class and offers different implementations of the abstract methods.

Abstract classes help to describe generic types of behaviors and object-oriented programming class hierarchy. It also describes subclasses to offer implementation details of the abstract class.

Summary:

  • Abstraction is the process of selecting important data sets for an Object in your software and leaving out the insignificant ones.
  • Once you have modeled your object using Abstraction, the same set of data could be used in different applications.
  • Java, abstraction is accomplished using Abstract classes and interfaces. We will study in detail about Abstract classes and interfaces in further tutorials.

ENJOY & HAPPY LEARNING! :+1:

20 Likes

@SaM Thankyou so much for posting these type’s of helpful articles,keep them coming bro!Appreciate it.

1 Like

Great Article Chief :+1:

1 Like

Amazing and very clear explanation about Abstraction in OOP. Really valuable stuff here. Thank you So much ZeuS. A lot of people will find these tutorials so useful because usually these topics don’t teach in courses. Keep this is up. Waiting for more tutorials like this…:pray:

2 Likes