Fui a una entrevista de trabajo hoy y me hicieron esta interesante pregunta.
Además de la pérdida de memoria y el hecho de que no existe un dtor virtual, ¿por qué falla este código?
#include <iostream>
//besides the obvious mem leak, why does this code crash?
class Shape
{
public:
virtual void draw() const = 0;
};
class Circle : public Shape
{
public:
virtual void draw() const { }
int radius;
};
class Rectangle : public Shape
{
public:
virtual void draw() const { }
int height;
int width;
};
int main()
{
Shape * shapes = new Rectangle[10];
for (int i = 0; i < 10; ++i)
shapes[i].draw();
}
Shape **
apuntando a una matriz de rectángulos. Entonces el acceso debería haber sido formas [i] -> dibujar ();
->
fue un error cometido por un editor.