Multiple Inheritance, Hybrid Inheritance - Java OOPs Simplified - Part 3
Multiple Inheritance
Java does not support multiple inheritance of classes, where a class inherits from more than one class. However, it supports multiple inheritance through interfaces.
Attempting to inherit a child class from two parent classes is...
blog.sankarlal.in4 min read