---
title: "Can you explain about information hiding in Java ?"  
description: "Can you explain about information hiding in Java ?"  
author: "Anonymous User"  
published: 2015-07-07  
updated: 2020-09-14  
canonical: https://www.mindstick.com/interview/2690/can-you-explain-about-information-hiding-in-java  
category: "java"  
tags: ["java", "oops"]  
reading_time: 1 minute  

---

# Can you explain about information hiding in Java ?

Information hiding helps objects to hide critical information from other objects accessing it. It effectively decouples the method being invoked from the internal workings of a function. By doing so, object can change the hidden portions of the function without changing the calling code. Encapsulation is a common technique programmers use to implement information hiding.

## Answers

### Answer by Anonymous User

Information hiding helps objects to hide critical information from other objects accessing it. It effectively decouples the method being invoked from the internal workings of a function. By doing so, object can change the hidden portions of the function without changing the calling code. Encapsulation is a common technique programmers use to implement information hiding.


---

Original Source: https://www.mindstick.com/interview/2690/can-you-explain-about-information-hiding-in-java

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
