---
title: "List advantage of Inheritance in Java ?"  
description: "List advantage of Inheritance in Java ?"  
author: "Anonymous User"  
published: 2015-07-06  
updated: 2020-09-20  
canonical: https://www.mindstick.com/interview/2688/list-advantage-of-inheritance-in-java  
category: "java"  
tags: ["java", "inheritance"]  
reading_time: 1 minute  

---

# List advantage of Inheritance in Java ?

**Re-usability** : Inheritance helps derived class to use methods of base class without rewriting them**Extensibility** : Extending the base class logic as per business logic of the derived class**Data hiding** : Allows base class to keep some private data which can't be altered by the derived class

## Answers

### Answer by Anonymous User

**Re-usability** : Inheritance helps derived class to use methods of base class without rewriting them**Extensibility** : Extending the base class logic as per business logic of the derived class**Data hiding** : Allows base class to keep some private data which can't be altered by the derived class


---

Original Source: https://www.mindstick.com/interview/2688/list-advantage-of-inheritance-in-java

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
