Encapsulation in OOP πŸ”’

What is Encapsulation? πŸ€”

Encapsulation is the process of bundling data (variables) and methods (functions) that operate on the data into a single unit (class). It helps in restricting direct access to some details and only exposing the necessary parts of an object.

Real-Life Example 🌍:

Think of a capsule pill πŸ’Š. The medicine inside is protected and can only be accessed in a controlled way. Similarly, in OOP, we hide certain data and provide controlled access via methods.


How Encapsulation Works? βš™οΈ

Encapsulation is implemented using access modifiers:

  • private β†’ Accessible only within the class.
  • public β†’ Accessible from anywhere.
  • protected β†’ Accessible within the same package or subclasses.

Example in Java πŸ“Œ:

class BankAccount {
    private double balance; // Private variable

    // Constructor
    public BankAccount(double initialBalance) {
        this.balance = initialBalance;
    }

    // Public method to access private variable
    public double getBalance() {
        return balance;
    }

    // Public method to modify private variable
    public void deposit(double amount) {
        if (amount > 0) {
            balance += amount;
            System.out.println("Deposited: " + amount);
        } else {
            System.out.println("Invalid deposit amount");
        }
    }
}

public class Main {
    public static void main(String[] args) {
        BankAccount myAccount = new BankAccount(1000);
        myAccount.deposit(500);
        System.out.println("Balance: " + myAccount.getBalance());
    }
}

Output:

Deposited: 500
Balance: 1500

Why Use Encapsulation? πŸ€”

βœ… Data Protection: Prevents unauthorized modifications.
βœ… Code Maintainability: Hides complex details and allows controlled access.
βœ… Modularity: Makes the code cleaner and more organized.


Key Differences: Encapsulation vs Data Hiding πŸ†š

FeatureEncapsulation πŸ”’Data Hiding πŸ•ΆοΈ
DefinitionBundling data and methodsRestricting access to data
AccessibilityAllows controlled accessCompletely hides data
Exampleprivate variables with getters/settersprivate variables with no access methods

Conclusion 🎯

Encapsulation is a fundamental OOP principle that ensures data security, modularity, and maintainability. It allows us to control access to an object's properties, making software more robust and scalable. πŸš€


πŸ’¬ Have you used encapsulation in your projects? Share your thoughts below!

0
Subscribe to my newsletter

Read articles from 𝔏𝔬𝔳𝔦𝔰π”₯ π”Šπ”¬π”Άπ”žπ”© directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

𝔏𝔬𝔳𝔦𝔰π”₯ π”Šπ”¬π”Άπ”žπ”©
𝔏𝔬𝔳𝔦𝔰π”₯ π”Šπ”¬π”Άπ”žπ”©