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 π
Feature | Encapsulation π | Data Hiding πΆοΈ |
Definition | Bundling data and methods | Restricting access to data |
Accessibility | Allows controlled access | Completely hides data |
Example | private variables with getters/setters | private 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!
Subscribe to my newsletter
Read articles from ππ¬π³π¦π°π₯ ππ¬πΆππ© directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
