Pure virtual functions are those member functions that are virtual and have the pure-specifier ( = 0; )

Clause 10.4 paragraph 2 of C++03 tells us what an abstract class is and, as a side note, the following:

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

struct C {
virtual void f() = 0 { }; // ill-formed
};

—end example]

For those who are not very familiar with the issue, please note that pure virtual functions can have definitions but the above-mentioned clause forbids such definitions to appear inline (lexically in-class). (For uses of defining pure virtual functions you may see, for example, this GotW)

Now for all other kinds and types of functions it is allowed to provide an in-class definition, and this restriction seems at first glance absolutely artificial and inexplicable. Come to think of it, it seems such on second and subsequent glances :) But I believe the restriction wouldn't be there if there weren't a specific reason for that. My question is: does anybody know that specific reasons? Good guesses are also welcome. Thanks in advance

Notes:

  • MSVC does allow PVF's to have inline definitions. So don't get surprised :)
  • the word inline in this question does not refer to the inline keyword. It is supposed to mean lexically in-class
link|improve this question

Looks a bit weird when using a function try block: virtual void f() = 0 try { } catch(...) { } – Johannes Schaub - litb Nov 13 '10 at 21:18
2  
Here's a guess: It was simpler to create a compiler that didn't allow it and given its very rare usage, was an easy decision. The fact that some compilers (you cited MSVC) do allow it simply means that some compiler authors weren't bothered by the extra work. – Tergiver Nov 13 '10 at 21:19
7  
@Downvoter: The question is subjective and argumentative? Not a real question? Poorly formatted/formulated? Let me know so I can improve to meet your high standards – Armen Tsirunyan Nov 13 '10 at 21:29
1  
Of course it's 'harder'. It's an additional notation that has to be allowed on a function declaration construct. Granted, it's not all that difficult, but work not done is time saved, no matter how great or small the value. Anyhow, I didn't say it was a good guess, just a guess. – Tergiver Nov 13 '10 at 21:30
1  
@Ashleys: Yes, an extension which stays there even if "Disable Language Extensions" is set – Armen Tsirunyan Nov 20 '10 at 5:54
show 15 more comments
feedback

4 Answers

up vote 38 down vote accepted
+100

In the SO thread “Why pure virtual function is initialized by 0?” Jerry Coffin provided this quote from Bjarne Stroustrup’s The Design & Evolution of C++, section §13.2.3, where I've added some emphasis of the part I think is relevant:

The curious =0 syntax was chosen over the obvious alternative of introducing a new keyword pure or abstract because at the time I saw no chance of getting a new keyword accepted. Had I suggested pure, Release 2.0 would have shipped without abstract classes. Given a choice between a nicer syntax and abstract classes, I chose abstract classes. Rather than risking delay and incurring the certain fights over pure, I used the tradition C and C++ convention of using 0 to represent "not there." The =0 syntax fits with my view that a function body is the initializer for a function and also with the (simplistic, but usually adequate) view of the set of virtual functions being implemented as a vector of function pointers. [ … ]

So, when choosing the syntax Bjarne was thinking of a function body as a kind of initializer part of the declarator, and =0 as an alternate form of initializer, one that indicated “no body” (or in his words, “not there”).

It stands to reason that one cannot both indicate “not there” and have a body – in that conceptual picture.

Or, still in that conceptual picture, having two initializers.

Now, that's as far as my telepathic powers, google-foo and soft-reasoning goes. I surmise that nobody's been Interested Enough™ to formulate a proposal to the committee about having this purely syntactical restriction lifted, and following up with all the work that that entails. Thus it's still that way.

Cheers & hth.,

link|improve this answer
8  
Wow... 21 votes (so far), and unless I've missed something, you've said not one word to address the question (which was actually why out-of-line definitions are possible but inline not). – Tony Delroy Nov 24 '10 at 2:48
quotations are powerful :) – Default Nov 24 '10 at 9:08
5  
@Tony: I'm sorry that you didn't understand the relevance of my answer. I tried my best. It didn't work for you. I don't know how to say it more clearly. Possibly there's a communication gap between us. – Cheers and hth. - Alf Nov 24 '10 at 10:53
5  
having 8 hours to ponder, I see that in the narrow context of the site of = 0 what you're saying is coherent. My confusion stems from your not having related that to the out-of-line definition or explored why the above thinking/logic/perspective might not have resulted in a ban on a body definition there, or the realisation of a use for out-of-line definition changed the thinking re in situ definition. This inconsistency is the heart of the question. If there's still a communication gap between us, then I guess we've both done our best - no harm done :-). – Tony Delroy Nov 24 '10 at 11:06
1  
Like Tony said, it seems like you've answered the question "Pure virtual functions may not have any definition. Why?" and not the question "Pure virtual functions may not have an inline definition (even though they may have an out-of-line definition). Why?" – Jon Nov 25 '11 at 0:08
show 1 more comment
feedback

You shouldn't have so much faith in the standardization committee. Not everything has a deep reason to explain it. Something are so just because at first nobody thought otherwise and after nobody thought that changing it is important enough (I think it is the case here); for things old enough it could even be an artifact of the first implementation. Some are the result of evolution -- there was a deep reason at a time, but the reason was removed and the initial decision wasn't reconsidered again (it could be also the case here, where the initial decision was because any definition of the pure function was forbidden). Some are the result of negotiation between different POV and the result lacks coherence but this lack was deemed necessary to reach to consensus.

link|improve this answer
1  
According to D&E, pure virtuals were added to C++ by Stroustrup, after discussing it with in-house C++ users at AT&T, as the last thing merely weeks before the release of cfront 2.0, which shipped in June 1989. By the same source, the first meeting of ANSI X3J16 (which later joined with ISO WG21 to form what we now know as the Standard Committee) took place half a year later, in December 1989. (I thought I had read a reason for not allowing inline definitions for abstract functions, but I couldn't find it in D&E.) So this was not decided by the Standard Committee. – sbi Nov 14 '10 at 21:27
1  
@AProgrammer: Thanks for a good guess. But I am still going to wait for an answer beginning with "So, yeah, I called Bjarne today, and he said ..." :) – Armen Tsirunyan Nov 15 '10 at 7:36
10  
So, yeah, I called Bjarne today, but he didn't pick up. ;-) – David Schmitt Nov 15 '10 at 8:05
@Armen I don't think this is the kind of question to bother Bjarne with. Cheers, – Cheers and hth. - Alf Nov 18 '10 at 14:17
1  
@David: Over the last 15 years, I have bothered him with maybe half a dozen emails regarding C++. And he always responded, and very timely, too. I suspect that such a question as Armen's might daily arrive in his inbox by the dozens, so it might not get answered. But I would not outright dismiss the idea. – sbi Nov 22 '10 at 14:23
show 1 more comment
feedback

Good guesses... well, considering the situation:

  • it is legal to declare the function inline and provide an explicitly inline body (outside the class), so there's clearly no objection to the only practical implication of being declared inside the class.
  • I see no potential ambiguities or conflicts introduced in the grammar, so no logical reason for the exclusion of function definitions in situ.

My guess: the use for bodies for pure virtual functions was realised after the = 0 | { ... } grammar was formulated, and the grammar simply wasn't revised. It's worth considering that there are a lot of proposals for language changes / enhancements - including those to make things like this more logical and consistent - but the number that are picked up by someone and written up as formal proposals is much smaller, and the number of those the Committee has time to consider, and believes the compiler-vendors will be prepared to implement, is much smaller again. Things like this need a champion, and perhaps you're the first person to see an issue in it. To get a feel for this process, check out http://www2.research.att.com/~bs/evol-issues.html.

link|improve this answer
feedback

Good guesses are welcome you say?

I think the = 0 at the declaration comes from having the implementation in mind. Most likely this definition means, that you get a NULL entry in the RTTI's vtbl of the class information -- the location where at runtime addresses of the member functions of a class are stored.

But actually, when put a definition of the function in your *.cpp file, you introduce a name into the object file for the linker: An address in the *.o file where to find a specific function.

The basic linker then does need to know about C++ anymore. It can just link together, even though you declared it as = 0.

I think I read that it is possible what you described, although I forgot the behaviour :-)...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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