---
title: "Why multiple inheritance is not supported in java?"  
description: "Why multiple inheritance is not supported in java?"  
author: "Anonymous User"  
published: 2015-02-23  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/2341/why-multiple-inheritance-is-not-supported-in-java  
category: "java"  
tags: ["inheritance"]  
reading_time: 1 minute  

---

# Why multiple inheritance is not supported in java?

To reduce the complexity and simplify the language, multiple inheritance is not supported in java in case of class.

## Answers

### Answer by Anonymous User

In some scenarios multiple inheritance led to **diamond problems** which create ambiguities during program execution. In-spite of this Java support multi-level inheritance

### Answer by Anonymous User

To reduce the complexity and simplify the language, multiple inheritance is not supported in java in case of class.


---

Original Source: https://www.mindstick.com/interview/2341/why-multiple-inheritance-is-not-supported-in-java

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
