0
What is circular inheritance?
2 Respuestas
+ 2
That is when a class inherits from another class which also attempts to inherit from the first class. So you can't have "A" inherit from "C" and also have "C" inherit from "A". Having the first require the second and the second require the first is circular.
0
Helped me a lot. Thanks