What is Encapsulation in Java? Learn Encapsulation with an Example Data Hiding in Java Getter and Setter Methods in Java Abstraction vs. Encapsulation Advantages of Encapsulation in Java

Click here if the video is not accessible

Learn Encapsulation with an Example

To understand what is encapsulation in detail consider the following bank account class with deposit and show balance methods Suppose a hacker managed to gain access to the code of your bank account. Now, he tries to deposit amount -100 into your account by two ways. Let see his first method or approach. Approach 1: He tries to deposit an invalid amount (say -100) into your bank account by manipulating the code.

Now, the question is – Is that possible? Let investigate. Usually, a variable in a class are set as “private” as shown below. It can only be accessed with the methods defined in the class. No other class or object can access them.

If a data member is private, it means it can only be accessed within the same class. No outside class can access private data member or variable of other class. So in our case hacker cannot deposit amount -100 to your account.

Approach 2: Hacker’s first approach failed to deposit the amount. Next, he tries to do deposit a amount -100 by using “deposit” method.

But method implementation has a check for negative values. So the second approach also fails.

Thus, you never expose your data to an external party. Which makes your application secure.

The entire code can be thought of a capsule, and you can only communicate through the messages. Hence the name encapsulation. To achieve a lesser degree of encapsulation in Java, you can use modifiers like “protected” or “public”. With encapsulation, developers can change one part of the code easily without affecting other. The following code is an example of getter and setter methods: In above example, getBalance() method is getter method that reads value of variable account_balance and setNumber() method is setter method that sets or update value for variable account_number.

Abstraction vs. Encapsulation

Often encapsulation is misunderstood with Abstraction. Lets study-

Encapsulation is more about “How” to achieve a functionality Abstraction is more about “What” a class can do.

A simple example to understand this difference is a mobile phone. Where the complex logic in the circuit board is encapsulated in a touch screen, and the interface is provided to abstract it out.

Advantages of Encapsulation in Java

Encapsulation is binding the data with its related functionalities. Here functionalities mean “methods” and data means “variables” So we keep variable and methods in one place. That place is “class.” Class is the base for encapsulation. With Java Encapsulation, you can hide (restrict access) to critical data members in your code, which improves security As we discussed earlier, if a data member is declared “private”, then it can only be accessed within the same class. No outside class can access data member (variable) of other class. However, if you need to access these variables, you have to use public “getter” and “setter” methods.