1.

Does Java support multiple inheritance?

Answer»

JAVA doesn’t support multiple inheritance completely as a CLASS can extend only ONE class. This is not supported as this can cause ambiguity in accessing inherited fields or methods if the same member EXISTS in the other PARENT class. However, the facility is provided partially through the interfaces. 



Discussion

No Comment Found