---
title: "What is Inheritance in java?"  
description: "What is Inheritance in java?"  
author: "Royce Roy"  
published: 2015-03-28  
updated: 2020-09-19  
canonical: https://www.mindstick.com/interview/2369/what-is-inheritance-in-java  
category: "java"  
tags: ["java"]  
reading_time: 2 minutes  

---

# What is Inheritance in java?

**Inheritance in java** is a mechanism in which one object acquires all the properties and behaviors of parent object.The idea behind inheritance in java is that you can create new classes that are built upon existing classes. When you inherit from an existing class, you can reuse methods and fields of parent class, and you can add new methods and fields also\
Inheritance represents the IS-A relationship, also known as parent-child relationship\
Why use inheritance in java

1. For Method Overriding (so runtime polymorphism can be achieved).\
2. For Code Reusability.

The extends keyword indicates that you are making a new class that derives from an existing class.\
In the terminology of Java, a class that is inherited is called a super class. The new class is called a subclass.\
**Output:**\
Programmer salary is:40000.0 Bonus of programmer is:10000**\**

## Answers

### Answer by Anonymous User

**Inheritance in java** is a mechanism in which one object acquires all the properties and behaviors of parent object.The idea behind inheritance in java is that you can create new classes that are built upon existing classes. When you inherit from an existing class, you can reuse methods and fields of parent class, and you can add new methods and fields also\
Inheritance represents the IS-A relationship, also known as parent-child relationship\
Why use inheritance in java

1. For Method Overriding (so runtime polymorphism can be achieved).\
2. For Code Reusability.

The extends keyword indicates that you are making a new class that derives from an existing class.\
In the terminology of Java, a class that is inherited is called a super class. The new class is called a subclass.\
**Output:**\
Programmer salary is:40000.0 Bonus of programmer is:10000**\**


---

Original Source: https://www.mindstick.com/interview/2369/what-is-inheritance-in-java

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
