আমি আজ একটি কাজের সাক্ষাত্কারে গিয়েছিলাম এবং এই আকর্ষণীয় প্রশ্নটি দেওয়া হয়েছিল।
মেমরি ফাঁস এবং সত্যই কোনও ভার্চুয়াল ডটার নেই, কেন এই কোডটি ক্রাশ হয়?
#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();
}