What is multiple inheritance java?

is it support multiple inheritances in java?

Replies (1)

Java does not support multiple inheritance for classes to prevent ambiguity and complexity (specifically the "Diamond Problem"), but you can achieve similar results using multiple interfaces or by using composition.

Leave a Reply

Your are not logged in . Please login to post replies

Click here to Login / Register