123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> Technology,-Gadget-and-Science >> View Article

Inheritance In Java

Profile Picture
By Author: jatin
Total Articles: 102
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

Java inheritance promotes reusability and polymorphism, supporting single, multilevel, hierarchical inheritance and interfaces.
Introduction to Inheritance in Java
Inheritance in Java is a core concept in object-oriented programming (OOP) that enables a class (known as a subclass or derived class) to inherit properties and behaviors (fields and methods) from another class (known as a superclass or base class). This powerful feature helps developers build modular, readable, and reusable code. In simpler terms, when one class acquires the properties of another class, it's called Inheritance in Java program.
Importance and Advantages of Inheritance in Java
1. Code Reusability:
Subclasses reuse code from the superclass without rewriting it.
Example: Car class can reuse properties from Vehicle.
2. Modularity:
Java inheritance promotes a modular and structured approach.
Helps in breaking the problem into manageable pieces.
3. Polymorphism in Java:
Inherited classes can be used in a polymorphic way.
Supports Java polymorphism by allowing function overriding in ...
... Java.
4. Maintainability:
Inheritance allows easier updates and bug fixes.
Updating a method in the superclass reflects in all subclasses.
Types of Inheritance Supported by Java
1. Single Inheritance in Java
Java supports single inheritance, where one class inherits from a single superclass.
// java single inheritance program
class Vehicle {
 void start() {
 System.out.println("Vehicle started.");
 }
}
class Car extends Vehicle {
 void drive() {
 System.out.println("Car is being driven.");
 }
}
public class Main {
 public static void main(String[] args) {
 Car car = new Car();
 car.start();
 car.drive();
 }
}
2. Multilevel Inheritance in Java
When a class inherits from another class, which itself inherits from another class.
// multilevel inheritance in java
class Animal {
 void eat() {
 System.out.println("Animal is eating.");
 }
}
class Dog extends Animal {
 void bark() {
 System.out.println("Dog is barking.");
 }
}
class BullDog extends Dog {
 void guard() {
 System.out.println("Bulldog is guarding.");
 }
}
3. Hierarchical Inheritance in Java
In this type, multiple subclasses inherit from a single superclass.
// hierarchical inheritance in java
class Shape {
 void draw() {
 System.out.println("Drawing a shape.");
 }
}
class Circle extends Shape {
 void draw() {
 System.out.println("Drawing a circle.");
 }
}
class Rectangle extends Shape {
 void draw() {
 System.out.println("Drawing a rectangle.");
 }
}
4. Multiple Inheritance in Java
Java does not support multiple inheritance through classes due to the diamond problem. However, it allows multiple inheritance via interfaces, a feature of interface inheritance in Java.
// difference between inheritance and interface in Java
interface Jumpable {
 void jump();
}
interface Runnable {
 void run();
}
class Athlete implements Jumpable, Runnable {
 public void jump() {
 System.out.println("Athlete jumps.");
 }
public void run() {
 System.out.println("Athlete runs.");
 }
}
Please visit our website to know more:-https://cyberinfomines.com/blog-details/inheritance-in-java

Total Views: 65Word Count: 351See All articles From Author

Add Comment

Technology, Gadget and Science Articles

1. Extract Engagement Metrics From Instagram Reels And Tiktok
Author: REAL DATA API

2. Sephora Inventory & Stock Data Scraping Api By Regions
Author: Actowiz Solutions

3. Chatgpt Api Integration Solutions For Seamless Ai-powered App Development
Author: michaeljohnson

4. Scrape Copart Auction Listings And Vehicle Details Effectively
Author: Web Data Crawler

5. Web Scraping Weekly Delivery Fees Data From Grabfood
Author: Actowiz Solutions

6. Scrape Unified Api & Daas For Apparel And Accessories Data
Author: REAL DATA API

7. Grocery Price Tracking With Web Scraping For Hypermarkets
Author: Retail Scrape

8. Analyzing Keeta Delivery Operations Through Scraped Data
Author: Web Data Crawler

9. Extract Industrial Product Listings And Prices From Grainger
Author: REAL DATA API

10. The Critical Factors For Optimizing Erp Performance And Scalability
Author: Focus Softnet

11. A Complete Guide To Generative Ai
Author: Priyanka Shinde

12. Omnichannel Service For Indian Markets With Hinglish Support
Author: Aman Kumar

13. Scrape Popular Halloween Product Data Across Usa & Uk Markets
Author: Actowiz Solutions

14. Weekly Price Scraping From Tesco & Asda
Author: Actowiz Metrics

15. Your Machine Can Live Longer Than You Think
Author: Pratham Technologies Pvt Ltd

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: