Abstraction in OOP πΆοΈ
What is Abstraction? π€
Abstraction is an OOP principle that hides implementation details and only exposes the essential features of an object. It helps reduce complexity and increases code maintainability.
Real-Life Example π:
Think of an ATM machine π§:
- You insert your card, enter a PIN, and withdraw money.
- You donβt see the internal banking operations that process your request.
- The complex logic is hidden, but the essential functionality is available.
This is abstractionβhiding unnecessary details and exposing only whatβs needed.
How Abstraction Works? βοΈ
Abstraction in Java is achieved using:
- Abstract Classes
- Interfaces
1οΈβ£ Abstract Classes π
An abstract class is a class that cannot be instantiated. It may have abstract methods (without implementation) and concrete methods (with implementation).
Example:
abstract class Vehicle {
abstract void start(); // Abstract method
void stop() {
System.out.println("Vehicle stopped");
}
}
class Car extends Vehicle {
@Override
void start() {
System.out.println("Car starting with key");
}
}
public class Main {
public static void main(String[] args) {
Vehicle myCar = new Car();
myCar.start(); // Output: Car starting with key
myCar.stop(); // Output: Vehicle stopped
}
}
2οΈβ£ Interfaces π
An interface is a collection of abstract methods. It provides full abstraction, meaning all methods are abstract (before Java 8).
Example:
interface Animal {
void makeSound(); // Abstract method
}
class Dog implements Animal {
@Override
public void makeSound() {
System.out.println("Dog barks");
}
}
public class Main {
public static void main(String[] args) {
Animal myDog = new Dog();
myDog.makeSound(); // Output: Dog barks
}
}
Abstract Class vs Interface π
Feature | Abstract Class π | Interface π |
Methods | Can have both abstract & concrete methods | Only abstract methods (before Java 8) |
Variables | Can have instance variables | Only final and static variables |
Inheritance | Can extend one class | Can implement multiple interfaces |
Why Use Abstraction? π€
β
Hides complexity: Users donβt need to know implementation details.
β
Improves maintainability: Changes in implementation donβt affect users.
β
Enhances security: Restricts direct data access.
Conclusion π―
Abstraction simplifies programming by hiding complexities and exposing only necessary functionalities. Itβs essential for writing clean and modular code! π
π¬ How have you used abstraction in your projects? Share your thoughts below!
Subscribe to my newsletter
Read articles from ππ¬π³π¦π°π₯ ππ¬πΆππ© directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
