- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is Inheritance in Java? Explain with an example
Inheritance can be defined as the process where one class acquires the properties (methods and fields) of another. With the use of inheritance, the information is made manageable in a hierarchical order.
The class which inherits the properties of other is known as subclass (derived class, child class) and the class whose properties are inherited is known as superclass (base class, parent class).
Example
class Calculation { int z; public void addition(int x, int y) { z = x + y; System.out.println("The sum of the given numbers:"+z); } public void Subtraction(int x, int y) { z = x - y; System.out.println("The difference between the given numbers:"+z); } } public class My_Calculation extends Calculation { public void multiplication(int x, int y) { z = x * y; System.out.println("The product of the given numbers:"+z); } public static void main(String args[]) { int a = 20, b = 10; My_Calculation demo = new My_Calculation(); demo.addition(a, b); demo.Subtraction(a, b); demo.multiplication(a, b); } }
Output
The sum of the given numbers:30 The difference between the given numbers:10 The product of the given numbers:200
- Related Articles
- What is shallow copy? Explain with an example in Java.
- What is deep copy? Explain with an example in Java.
- What is an anonymous array and explain with an example in Java?
- What is overriding in Java can explain briefly with an example?
- What is Symbiosis? Explain with an example.
- What is heat? Explain with an example.
- What is CheckBoxTreeItem in JavaFX explain with an example?
- What are jagged arrays and explain with an example in Java?
- Inheritance in JavaScript with example
- What is Image Array? Explain with an example in C++
- What is Bubble Sort in Python? Explain with an example?
- What is the character count? Explain with an example?
- What is a homologous series? Explain with an example.
- What is a tropic movement? Explain with an example.
- What are polygons ? Explain with an example.

Advertisements