Answers for "how u can achieve multiple inheritances"

3

how u can achieve multiple inheritances

Multiple inheritance in Java programming is achieved or 
implemented using interfaces. Java does not support multiple 
inheritance using classes.
In simple term, a class can inherit only one class and multiple 
interfaces in a java programs. In java terminology, we can say that

“A class can extend only one class but it can implement 
multiple interfaces.”
Posted by: Guest on December-05-2020

Code answers related to "how u can achieve multiple inheritances"

Browse Popular Code Answers by Language