Preventing Program’s Crash due to a Pure Virtual Function’s Call

Preventing Program’s Crash due to a Pure Virtual Function’s Call

A pure function should never be invoked. However, a buggy program or a buggy compiler can sometimes call a pure virtual function. In general, when a pure virtual function is invoked, the program crashes and you cannot continue debugging it. To prevent the program from crashing, you can implement the pure virtual function. This makes debugging possible even when a pure virtual function is inadvertently called.

 #include using namespace std;class Dog{public:  virtual void Bark()=0; //pure virtual, should never be invoked};  // the following definition ensures that the pure virtual call doesn't crashvoid Dog::Bark(){  cout<<"Dog::Bark called"; }class Beagle : public Dog{public:  virtual void Bark() {cout<<"Beagle"; }};int main(){  Beagle* m_pSnoopy = new Beagle;/* The following should call Beagle::Bark(); a buggy compiler/program calls Dog::bark() instead */  m_pSnoopy->Bark();}

When you have fixed the bug that calls the pure virtual function (or upgrades the faulty compiler), remember to delete the implementation of the pure virtual function.

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular