Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconFull Stack Developmentbreadcumb forward arrow iconLearn Data Abstraction in Java

Learn Data Abstraction in Java

Last updated:
11th Nov, 2021
Views
Read Time
8 Mins
share image icon
In this article
Chevron in toc
View All
Learn Data Abstraction in Java

The concept of data abstraction can be explained through a real-life example. Let us consider an example where a driver riding a vehicle knows that applying brakes will stop the vehicle from moving further. So the only information the driver knows is that he has to stop his vehicle from moving, so he applies the brakes. But he doesn’t know the underlying mechanism as to how the vehicle stops when a brake is applied. So this concept can be compared to the data abstraction concept where only the information required to be known to the user is displayed. The underlying information is kept hidden. So, this is the concept of abstraction, and when it is applied in the data, it is known as data abstraction.

Object-Oriented Programming provides ways for utilizing the data abstraction concept. Java is one of Object-Oriented Programming, follows the feature of data abstraction. In these programming languages, abstract classes and interfaces are used for achieving data abstraction.

Check out our free courses to get an edge over the competition

The process of data abstraction in Java is achieved through the class’s abstract classes. Interfaces are also used for data abstraction apart from abstract classes. The keyword “abstract” is used as a non-access modifier for the methods and classes. When defined with the keyword access, a class is an abstract class where the creation of objects is not allowed. Accession of the abstract class is only possible if it is inherited from another class. Abstract methods are those methods that can be used only in abstract classes. These methods don’t have a method body. 

Ads of upGrad blog

The subclass generally provides the body. Abstract classes can contain methods that are both regular and abstract.

Differences between an abstract class and an abstract method 

The differences between an abstract class and an abstract method are:

1. The abstract classes are those classes that are declared with the keyword abstract.

2. An abstract method is such a type of method which gets declared without its implementation.

3. An abstract class doesn’t need to have all the abstract method methods within itself. It can also contain methods that are not abstract.

4. Whenever a method is defined as an abstract method, it should also be defined again in the subclass. This will make the overriding compulsory and also make the subclass abstract.

5. If any class contains any abstract methods, whether one abstract method or more than that, it should be declared abstract by using the keyword abstract.

6. An abstract class cannot contain any object. A new operator cannot be used to instantiate the abstract class.

7. There is always the presence of default constructors in an abstract class. Also, parameterized constructors can be present in an abstract class.

Check out upGrad’s Advanced Certification in Cloud Computing 

Explore Our Software Development Free Courses

Java Abstract class

The programming language Java implements abstraction through abstract classes. An abstract class may be defined as that class that is declared with the keyword “abstract” with a special instruction that these classes cannot get instantiated. These classes may contain or may not contain abstract methods. 

The syntax of an abstract class in Java is shown below.

The above code is taken from https://www.softwaretestinghelp.com/what-is-abstraction-in-java/.

Check out upGrad’s Advanced Certification in Cyber Security

In the above syntax, it can be observed that both the abstract and the non-abstract methods can be contained within an abstract class. Also, the keyword “abstract” is placed before the declaration of the class. 

Read more about the java abstract class here 

Java Abstract Method

Java abstract methods are those methods that are preceded by the keyword “abstract,” but there is no implementation of the methods. The Java abstract methods are declared within the Java abstract class.

Because of the abstract methods, the Java abstract class becomes incomplete because the methods cannot be implemented. Therefore, the inclusion of an abstract form in the abstract class naturally makes the abstract class incomplete.

Its implementation in the subclass can use the abstract method. This subclass will inherit the abstract class and will carry out the implementation of the abstract methods. The general syntax of the abstract method is 

abstract void methodName (parameter_list);

Few rules should be noted while writing the method of abstract

  • If a class contains more than one abstract method, then the class will become an abstract class.
  • There should not be any keywords other than “abstract” while defining the abstract class and methods.

Considering the above points, the following possibilities are not allowed in Java.

  • final
  • abstract native
  • abstract static
  • abstract private
  • abstract synchronized
  • abstract strictfp 

In-Demand Software Development Skills

An example of data abstraction in Java is shown below.

https://www.javatpoint.com/how-to-achieve-abstraction-in-java.

The above code is taken from https://www.softwaretestinghelp.com/what-is-abstraction-in-java/.

In the code shown above, there is a class Bank. There is an abstract method within the Bank class which is getInterestRate(). Two other classes BOI and ICICI, are declared, which inherit the class Bank. These declared classes inherit the Bank class and therefore implement the method getInterestRate() returning the interest rates. 

An object of the Bank is created in the primary method. The object of the Bank consists of an ICICI class object which displays the interest rate. In the next step, the object of the class BOI is created too, which displays the interest rate. 

upGrad’s Exclusive Software Development Webinar for you –

SAAS Business – What is So Different?

 

Data abstraction through the interface

Interfaces are similar to the Java classes, with the only difference being that there are empty methods in an interface. It can also be defined as classes that consist of abstract methods and static constants. Every method present in the interface is public, and it does not contain any constructor. The interface is used for achieving data abstraction, and also it is used for performing multiple inheritances in Java. 

A few features of interfaces in Java are:

  • The interfaces can be used for achieving total abstraction.
  • A single class can use multiple interfaces that lead to the achievement of multiple interfaces.
  • Interfaces allow achieving loose coupling.

The syntax of the interface is shown below:

The above syntax is used from https://www.javatpoint.com/how-to-achieve-abstraction-in-java.

An interface can be used through the keyword “implements.”

A few differences between the abstract classes and the interface are:

  • Both the abstract and also the non-abstract methods can be contained within the abstract classes. While, in an interface, only the abstract methods can be present.
  • Final variables may or may not be present in the abstract classes. In interfaces, the variables can be final as default variables.
  • The class abstract can have variables that are non-final, final, non-static, or static. While, in an interface, only static and final variables may be present.
  • The abstract class allows the implementation of interfaces. An abstract class cannot be implemented in an interface.
  • The inheritance of an abstract class is done through the keyword “extends.” Implementation of the interface is done through the keyword “implements.”
  • The abstract class can implement multiple interfaces, or other classes can be extended by the abstract class. Whereas an interface can allow implementation of only another interface.
  • Apart from public members, both data members that are protected and private are contained in an abstract class. Whereas the members of an interface are by default public. 

Learn Software Courses online  from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.

Ads of upGrad blog

Read our Popular Articles related to Software Development

Conclusion

The article has described the concepts of data abstraction and has listed how data abstraction can be achieved in Java. For getting more experience in the Java programming language, you can check the Software Development Course offered by upGrad. The course is designed for working professionals and will train you with industry-oriented projects that will develop the required programming skills. More information can be retrieved through our website. For any information and help, our team of assistance can be contacted.

Profile

Sriram

Blog Author
Meet Sriram, an SEO executive and blog content marketing whiz. He has a knack for crafting compelling content that not only engages readers but also boosts website traffic and conversions. When he's not busy optimizing websites or brainstorming blog ideas, you can find him lost in fictional books that transport him to magical worlds full of dragons, wizards, and aliens.

Frequently Asked Questions (FAQs)

1What is Data Abstraction?

Data abstraction is a software design concept. The problem it solves is to create data structures and functions which are independent of the data types they operate on. It isolates the code from data types and allows the same code to be used in multiple situations. Data abstraction is achieved when the data that is represented by the data structure and the operations that can be applied to them are clearly defined. Abstraction is vital in software development. It is one of the fundamental forces that lead to simpler, smaller and more reliable software. Data abstraction is a vital component of high-level languages.

2What are the advantages of abstraction in Java?

3How to achieve abstraction in Java?

Abstractions in java are done using Interfaces. To implement the interface, one needs to provide the implementation as well. Actually, there is no need of inheriting classes to implement the interface. Interfaces are just like any other class in java. What makes them different is the fact that they only have one method.

Explore Free Courses

Suggested Blogs

Top 40 MySQL Interview Questions & Answers For Beginners & Experienced [2023]
117918
Have a Data engineering or data science interview coming up? Need to practice some of the most asked MySQL interview questions? The article compiles t
Read More

by Rohan Vats

07 Nov 2023

Literals In Java: Types of Literals in Java [With Examples]
5933
Summary: In this article, you will learn about Literals in Java. Literals in Java Integral Literals Floating-Point Literals Char Literals String Lit
Read More

by Rohan Vats

29 Oct 2023

10 Interesting HTML Project Ideas & Topics For Beginners [2023]
392673
Summary In this article, you will learn 10 Interesting HTML Project Topics. Take a glimpse below. A tribute page A survey form Technical documentati
Read More

by Rohan Vats

04 Oct 2023

15 Exciting SQL Project Ideas & Topics For Beginners [2023]
285091
Summary: In this Article, you will learn 15 exciting SQL project ideas & topics for beginners. Library Management System Centralized College Dat
Read More

by Rohan Vats

24 Sep 2023

17 Interesting Java Project Ideas & Topics For Beginners 2023 [Latest]
34992
Summary: In this article, you will learn the 17 Interesting Java Project Ideas & Topics. Take a glimpse below. Airline reservation system Data v
Read More

by Rohan Vats

24 Sep 2023

9 Exciting Software Testing Projects & Topics For Beginners [2023]
8267
Software testing might constitute 50% of a software development budget but it is viewed as a lethargic and unnecessary step by most students. Even edu
Read More

by Rohan Vats

21 Sep 2023

Top 10 Skills to Become a Full-Stack Developer in 2023
218178
In the modern world, if we talk about professional versatility, there’s no one better than a Full Stack Developer to represent the term “versatile.” W
Read More

by Rohan Vats

21 Sep 2023

Java Free Online Course with Certification [2023]
56995
The PYPL Popularity of Programming Language Index maintains that Java is the second most popular programming language in the world, after Python.  Alt
Read More

by Rohan Vats

20 Sep 2023

Salesforce Developer Salary in India in 2023 [For Freshers & Experienced]
903195
Wondering what is the range of salesforce salary in India? Businesses thrive because of customers. It does not matter whether the operations are B2B
Read More

by Rohan Vats

20 Sep 2023

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon