What is Information Hiding in Java ?

Information hiding is OOPS concept. In Java you can use encapsulation to do Information hiding. An object can use the access modifiers like-public, private, protected to hide its internal details from another object. This helps in decoupling the internal logic of an object from outside world.

By using Information hiding, an object can change its internal implementation without impacting the outside calling client’s code.



You May Interest

When Do You Use Exception or Error in Java ?

How Can We Print an Array in Java ?

What is Difference Between Include Directive and Include Action o ...

Why Do You Use Upcasting or Downcasting in Java ?

What are the Disadvantages of Multithreading in Java ?