+1 vote
in JAVA by

What is the difference between single inheritance and multiple inheritance in Java?

1 Answer

0 votes
by

Single inheritance is a mechanism in Java where a class inherits from only one superclass, while multiple inheritance is a mechanism where a class inherits from multiple classes. Java does not support multiple inheritance, but it can be achieved through interfaces.

Related questions

+1 vote
asked Oct 10, 2020 in JAVA by Robindeniel
+1 vote
asked Feb 1, 2023 in JAVA by sharadyadav1986
...