Ejemplo 1: herencia de diamantes
The "diamond problem" (sometimes referred to as the "Deadly Diamond of Death") is an ambiguity that arises when two classes B and C inherit from A, and class D inherits from both B and C
If there is a method in A that B and C have overridden, and D does not override it, then which class of the method does D inherit: that of B, or that of C?
Ejemplo 2: problema de diamantes de herencia múltiple en c ++
class Parent;
class a : virtual public Parent; //add virtual
class b : virtual public Parent; //add virtual
class c : public a, public b;
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)