class Road {
private:
std::vector<Vehicle*> container;
public:
std::vector<Vehicle*> getContainer(){
return container;
}
virtual void operator+(Vehicle *vehicle)=0;
};
class Highway: public Road {
public:
virtual void operator+(Vehicle *vehicle) {
getContainer().push_back(vehicle);
}
};
Why do I get an error that I cannot allocate an object of abstract type when all of my virtual functions are overriden?
It happens when I try to call Road r = Highway();
in my main class.
For
Road r = Highway();
,Road r
means you're trying to define an object of typeRoad
, which is an abstract class then the definition is not allowed. The initializer list part (i.e.= Highway()
) doesn't affect the type ofr
, it just meansr
is slicing-copy initialized from an temporary object of typeHighway
.You should use pointers/smart pointers or references with abstract class type, e.g.
or