Java Language – 15 – Encapsulation

Object-Oriented Programming (OOP) – Encapsulation
Introduction

Encapsulation is one of the four fundamental concepts of object-oriented programming (OOP) and plays a critical role in Java. It involves the bundling of data (attributes) and methods (functions) that operate on the data into a single unit called a class. In this guide, we’ll explore the concept of encapsulation in Java and its significance in creating maintainable and secure code.

What is Encapsulation?

Encapsulation is the practice of hiding the internal state and functionality of an object and providing controlled access to it. It allows you to protect the integrity of an object’s data by preventing unauthorized or unintended modifications.


public class BankAccount {
    private double balance;

    public void deposit(double amount) {
        if (amount > 0) {
            balance += amount;
        }
    }

    public void withdraw(double amount) {
        if (amount > 0 && balance >= amount) {
            balance -= amount;
        }
    }

    public double getBalance() {
        return balance;
    }
}

In this ‘BankAccount’ class, the ‘balance’ attribute is marked as private, making it inaccessible from outside the class. The ‘deposit’ and ‘withdraw’ methods provide controlled access to modify the balance, and the ‘getBalance’ method allows reading the balance value.

Benefits of Encapsulation

Encapsulation offers several advantages in Java and OOP, including:

  • Data Protection: It protects the object’s data from unauthorized access and modification by limiting access to specific methods.
  • Code Maintenance: Encapsulation promotes code modularity, making it easier to maintain and extend your codebase.
  • Security: It enhances the security and integrity of the object’s state, preventing invalid or malicious changes.
Access Modifiers

Access modifiers in Java determine the level of visibility and accessibility of class members (attributes and methods). There are four main access modifiers in Java:

  • Private: Members are accessible only within the same class.
  • Default (no modifier): Members are accessible within the same package (package-private).
  • Protected: Members are accessible within the same package and subclasses in other packages.
  • Public: Members are accessible from anywhere.
Getters and Setters

To provide controlled access to private attributes, you often use getter and setter methods. Getter methods allow reading attribute values, while setter methods enable modifying them. This is a common practice for achieving encapsulation in Java.


public class Person {
    private String name;
    private int age;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        if (age >= 0) {
            this.age = age;
        }
    }
}

In this ‘Person’ class, the ‘name’ and ‘age’ attributes are private, and getter and setter methods are provided for accessing and modifying these attributes. The setter for ‘age’ includes a validation check to ensure the age is non-negative.

Encapsulation and Security

Encapsulation is particularly important for security in software development. By encapsulating sensitive data and controlling access to it, you can prevent unauthorized tampering and data breaches.


public class User {
    private String username;
    private String password;

    public User(String username, String password) {
        this.username = username;
        this.password = hashPassword(password); // Hash the password before storing it
    }

    public boolean authenticate(String inputPassword) {
        String hashedInputPassword = hashPassword(inputPassword);
        return hashedInputPassword.equals(password);
    }

    private String hashPassword(String password) {
        // Perform a secure hash operation
        // ...
        return hashedPassword;
    }
}

In this ‘User’ class, the ‘username’ and ‘password’ attributes are private. The ‘password’ is hashed before storing it, and the ‘authenticate’ method compares the hashed input password with the stored hash, ensuring password security.

Conclusion

Encapsulation is a fundamental concept in Java and OOP that promotes data protection, code modularity, and security. By hiding the internal state of objects and providing controlled access through methods, you can create more maintainable and secure Java applications.