Data Abstraction is one of the most important concepts of OOP that shows only essential details to the user and hides the desired details from the users. All in all the main purpose of abstraction is to provide security.

The best example of abstraction can be an ATM machine which can be used for cash transfer, withdrawal, inquiring account balance, etc. We utilize ATM machines to achieve different functionalities but when we put the card in the ATM, we have no idea what operations are happening within the ATM machine. That’s exactly what abstraction classes, methods, and interfaces do in Java.

This write-up demonstrates a detailed understanding of data abstraction in the following aspects:

Let’s get started!

Abstract Classes in Java

To create an abstract class, we have to use abstract keyword:

abstract class ClassName{

}

An abstract class can have normal methods as well as abstract methods:

publicabstractvoidmethodName();        //Abstract method


publicvoidmethodName() {                //Normal method

//code

}

  • A class will be considered as an abstract class, if it has an abstract method and we must have to specify the abstract keyword while class declaration.
  • An abstract class can’t be instantiated, this means we can not create the object/instance of an abstract class.
  • In order to access the abstract class, we have to extend/inherit it from some other class which means an abstract class will always be used as a Parent class.
  • The abstract class can have fields/class attributes and functions/methods just like a regular class.

Abstract Methods in Java

A method without a body is referred as abstract method and to create an abstract method the abstract keyword is used:

public abstract void methodName();

Let’s consider the below-given example for the profound understanding of the concepts.

Example

The below-given example creates two classes: an abstract class “Person” that is inherited by a regular class “Employee”.

Person.java

package abstractexample;

publicabstractclassPerson {

int age;


    String name;

    Person(int age, String name) {

this.age = age;

this.name = name;

    }

publicvoiddisplay() {


        System.out.println(“name :” name ” “ “Age :” age);


    }

publicabstractvoidconcat();

}

Consider the below-given screenshot for better understanding:

<img data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/03/echo/word-image.png" data-lazy- height="346" src="data:image/svg xml,” width=”696″>

The above example creates an abstract class containing a couple of class attributes, a parameterized constructor, a regular function, and an abstract function.

Employee.java

package abstractexample;

publicclassEmployeeextendsPerson {

    Employee(int age, String name) {

super(age, name);


    }

publicvoidconcat() {


        System.out.println(“Age :” age ” “ “name :” name);


    }

publicstaticvoidmain(String[] args) {


        Employee exp = new Employee(22, “John”);


        exp.concat();


        exp.display();


    }

}

The above snippet shows the Employee class extends the abstract class Person, and uses the abstract method “concat()”. Furthermore, anything that is declared in the constructor of Employee class is defined in the constructor of Person class. Within the constructor of Employee class (Child), we use the keyword “super” to invoke the constructor of Person class(Parent).

In the main method, we create an object of the Employee class and pass the integer and string value to it. The constructor then initializes age and name using the passed values and lastly, the concat() and display() methods are called.

The output is shown in the below-given snippet:

<img data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/03/echo/word-image-1.png" data-lazy- height="477" src="data:image/svg xml,” width=”675″>

The output authenticates that the abstract class “Person” is successfully extended and accessed by the “Employee” class.

Conclusion

In Java, abstraction provides security by means of showing the essential details and hiding certain details from the user, and to create an abstract class or method the abstract keyword is used. Abstract class can’t be instantiated and it can have abstract as well as the regular methods. The abstract method will be declared in the abstract class and defined in the regular class. This write-up presents a detailed overview of abstract classes and methods in java, their basic syntax, and how to implement them in Java.

About the author

<img data-del="avatar" data-lazy-src="https://kirelos.com/wp-content/uploads/2022/03/echo/FA9AFCF66E2D44C3A65378AC87A87EB4-150×150.jpg62254946ab3a4.jpg" height="112" src="data:image/svg xml,” width=”112″>

Anees Asghar

I am a self-motivated IT professional having more than one year of industry experience in technical writing. I am passionate about writing on the topics related to web development.