Java Language – 16 – Abstraction

Object-Oriented Programming (OOP) – Abstraction
Introduction

Abstraction is a fundamental concept in object-oriented programming (OOP) that focuses on simplifying complex systems by modeling classes based on their essential features. It allows you to hide unnecessary details while highlighting the essential aspects of an object or a system. In this guide, we’ll explore the concept of abstraction in Java and its role in creating more manageable and maintainable code.

What is Abstraction?

Abstraction is the process of simplifying complex reality by modeling classes based on their essential attributes and behaviors. It involves defining a clear and concise interface while hiding the underlying implementation details. Abstraction is like viewing an object from a high-level perspective, focusing on what it does rather than how it works.

Abstract Classes and Methods

In Java, abstraction is often achieved through abstract classes and methods. An abstract class is a class that cannot be instantiated and is meant to serve as a blueprint for other classes. It can include both regular (concrete) methods and abstract methods. Abstract methods are methods that have no implementation in the abstract class and must be defined in concrete (sub) classes.


abstract class Shape {
    int x;
    int y;

    Shape(int x, int y) {
        this.x = x;
        this.y = y;
    }

    abstract void draw();
}

class Circle extends Shape {
    int radius;

    Circle(int x, int y, int radius) {
        super(x, y);
        this.radius = radius;
    }

    @Override
    void draw() {
        // Implementation of drawing a circle
    }
}

class Rectangle extends Shape {
    int width;
    int height;

    Rectangle(int x, int y, int width, int height) {
        super(x, y);
        this.width = width;
        this.height = height;
    }

    @Override
    void draw() {
        // Implementation of drawing a rectangle
    }
}

In this example, the ‘Shape’ class is an abstract class with an abstract method ‘draw.’ Subclasses like ‘Circle’ and ‘Rectangle’ provide their implementations of the ‘draw’ method. This allows you to focus on the common abstraction of a ‘Shape’ while specifying the unique details in the concrete classes.

Interfaces and Abstraction

In addition to abstract classes, Java supports abstraction through interfaces. An interface is a collection of abstract methods that define a contract for classes to implement. It allows multiple classes to share a common set of methods without specifying the implementation details.


interface Printable {
    void print();
}

class Document implements Printable {
    @Override
    public void print() {
        // Implementation of printing a document
    }
}

class Image implements Printable {
    @Override
    public void print() {
        // Implementation of printing an image
    }
}

In this example, the ‘Printable’ interface defines an abstract method ‘print.’ Classes like ‘Document’ and ‘Image’ implement this interface by providing their implementations of the ‘print’ method, enabling a common way to print various types of objects.

Benefits of Abstraction

Abstraction offers several advantages in Java and OOP, including:

  • Simplicity: Abstraction simplifies complex systems by focusing on essential features.
  • Modularity: It promotes code modularity by breaking down complex systems into manageable components.
  • Reusability: Abstraction allows you to reuse abstract classes and interfaces across different projects, enhancing code reusability.
Encapsulation vs. Abstraction

While both encapsulation and abstraction are essential concepts in OOP, they serve different purposes. Encapsulation focuses on hiding internal details (data and implementation) of a class, protecting it from unauthorized access. Abstraction, on the other hand, concentrates on simplifying the representation of an object or system, highlighting essential features while hiding implementation.

Conclusion

Abstraction is a crucial concept in Java and OOP that promotes simplicity, modularity, and reusability in software development. It allows you to manage complex systems more effectively by focusing on essential attributes and behaviors while hiding implementation details.