Prev Next

Java / OOPS Concepts and its implementation in Java

What is Encapsulation in Java?

Encapsulation in Java is a concept that enforces protecting variables, functions from outside of class, in order to better manage that piece of code and having least impact or no impact on other parts of a program due to change in protected code.

You can completely encapsulate a member be it a variable or method in Java by using private keyword and you can even achieve a lesser degree of encapsulation in Java by using other access modifiers like protected or the public.

More Related questions...

Show more question and Answers...


Comments & Discussions