When wouldn't I want to allow polymorphic deletion in C++?

When designing a pure virtual base class (interface) in C++, in what cases would I not want to allow polymorphic deletion via a pointer to my base class? I've seen questions about why you should make the destructor virtual or not (e.g. this one). They often include guidance that says you should make the destructor public and virtual or protected and non-virtual. However, if I don't know how users will derive from my interface or how they will want to delete objects of the derived class, why wouldn't I always make the destructor virtual in a pure virtual base class?

Mar 4, 2025 - 00:24
 0
When wouldn't I want to allow polymorphic deletion in C++?

When designing a pure virtual base class (interface) in C++, in what cases would I not want to allow polymorphic deletion via a pointer to my base class?

I've seen questions about why you should make the destructor virtual or not (e.g. this one). They often include guidance that says you should make the destructor public and virtual or protected and non-virtual. However, if I don't know how users will derive from my interface or how they will want to delete objects of the derived class, why wouldn't I always make the destructor virtual in a pure virtual base class?