Skip to main content

Tightly Encapsulated class in Java || What is Tightly Encapsulated class in Java?

 Tightly Encapsulated class in Java || What is Tightly Encapsulated class in Java?

'Hi , Welcome to Java Education Point. In this post we talk about Tightly Encapsulated class in java.

Defination of Tightly Encapsulated Class:

A class is said to be tightly encapsulated if and only if every variable of that class declared as private whether the variable has getter and setter methods are not , and whether these methods declared as public or not, these checkings are not required to perform.


Example of Tightly Encapsulated Class:

class Account 
private double balance;
public double getBalance() { 
return balance; 

Which of the following classes are tightly encapsulated?


Which of the following classes are tightly encapsulated? 

class A { 

int x=10; //not 

class B extends A 

private int y=20; //not 

class C extends B { 

private int z=30; //not 

Note: if the parent class is not tightly encapsulated then no child class is tightly encapsulated.


Comments