0% found this document useful (0 votes)
2 views

Encapsulation

Encapsulation in java programming

Uploaded by

Rohan Ashish
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Encapsulation

Encapsulation in java programming

Uploaded by

Rohan Ashish
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 11

Java Full Stack

<Sample PPT>

Network Rhinos www.networkrhinos.com 8377834742


Encapsulation in OOPS
-Java
Encapsulation in Java is a mechanism of wrapping the data (variables)
and code acting on the data (methods) together as a single unit. In
encapsulation, the variables of a class will be hidden from other classes,
and can be accessed only through the methods of their current class.
Therefore, it is also known as data hiding.
To achieve encapsulation in Java −
•Declare the variables of a class as private.
•Provide public setter and getter methods to modify and view the
variables values.
Network Rhinos www.networkrhinos.com 8377834742
Network Rhinos www.networkrhinos.com 8377834742
Getter are methods in java that are used to retrieve(read) the value of a data
member

and Setter are methods update or set the value of a data member
respectively.

Getters are also called accessors and Setters are also called mutators.

Let us take an example to demonstrate the actual use of getter and setter in
java.

Network Rhinos www.networkrhinos.com 8377834742


Network Rhinos www.networkrhinos.com 8377834742
Network Rhinos www.networkrhinos.com 8377834742
Network Rhinos www.networkrhinos.com 8377834742
Following is an example that demonstrates how to achieve
Encapsulation in Java −

Network Rhinos www.networkrhinos.com 8377834742


The variables of the EncapTest class can be accessed using the
following program − implementation program

Network Rhinos www.networkrhinos.com 8377834742


Network Rhinos www.networkrhinos.com 8377834742
Network Rhinos www.networkrhinos.com 8377834742

You might also like