vote up 4 vote down star
1

Is it wrong to write:

class A {
public:
    virtual ~A() = 0;
};

for an abstract base class?

At least that compiles in MSVC... Will it crash at run time?

flag

2 Answers

vote up 14 vote down check

Yes. You also need to implement the destructor:

class A {
    virtual ~A() = 0;
};

inline A::~A() { }

should suffice.

And since this got a down vote, I should clarify: If you derive anything from A and then try to delete or destroy it, A's destructor will eventually be called (which isn't exactly possible since the destructor is private). Since it is pure and doesn't have an implementation, undefined behavior will ensue. On one popular platform, that will invoke the purecall handler and crash.

Edit: fixing the declaration to be more conformant, compiled with http://www.comeaucomputing.com/tryitout/

link|flag
So it should be declared virtual ~A() { }, without the "= 0". It's not pure virtual if you provide an implementation – jalf Mar 10 at 16:16
1  
Um, yes it is. Pure only means a derived class also needs to provide an implementation. – MSN Mar 10 at 16:24
1  
Implementing pure virtual functions is in fact legal. Very useful for providing a default implementation but forcing subclasses to call it explicitly. – jmucchiello Mar 10 at 16:47
MSN and note if you have that definition in the header, you need to put "inline" before it to avoid violating the ODR (one definition rule) – Johannes Schaub - litb Mar 10 at 17:04
2  
A better way to put it is that once you declare a destructor, it is not automatically implemented for you. – MSN Mar 11 at 21:36
show 2 more comments
vote up 9 vote down

Private destructors: they will give you an error when you create an object of a derived class -- not otherwise. A diagnostic may appear though.

12.4 Destructors

6 A destructor can be declared virtual (10.3) or pure virtual (10.4); if any objects of that class or any derived class are created in the program, the destructor shall be defined.

A class with a pure virtual destructor is an abstract class. Note well:

10.4 Abstract classes

2 A pure virtual function need be defined only if called with, or as if with (12.4), the qualified-id syntax (5.1).

[Note:a function declaration cannot provide both a pure-specifier and a definition —end note ]

Taken straight from the draft:

struct C {
   virtual void f() = 0 { }; // ill-formed
};
link|flag
2  
+1. I think Herb Sutter also has some good info on this: gotw.ca/gotw/031.htm. It's interesting to note that any pure virtual function may have an implementation provided, not just destructors. – Fred Larson Mar 10 at 16:55
Yes, it's something you do in an interview to freak your interviewers ;) – dirkgently Mar 10 at 16:59
It's actually not all that uncommon, in my experience. – Neil Butterworth Mar 10 at 17:44
@Neil Butterworth: Which one? – dirkgently Mar 10 at 17:49
@Dirk - the "any function" scenario. It's not uncommon to find it used to implement some common behaviour. – Neil Butterworth Mar 10 at 18:11
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.