When there is a virtual function in a class, is the implicitly generated destructor virtual too?

Viewed 52

Suppose we have a class

class A
{
    virtual void f();
};

Will the default destructor be virtual?

1 Answers
Related