What could this possibly mean in C++11?

struct : bar {} foo {};
link|improve this question

46  
I just realized that the main answer is from the OP! I was thinking that the question was "real." Now I'm not as impressed... Should I start "asking" and "answering" the tough questions that I solve by myself every day? – Larry K Aug 15 '11 at 16:51
26  
@Larry yes, please! If they are interesting to others. – Johannes Schaub - litb Aug 15 '11 at 17:13
11  
@Larry K: Yes, SO allows one to do that as long as the Q & the answer may be useful to other users, As In this case if it's hardly useful(as anyone would hardly ever use it), We would brand it as just a Show-Off. – Als Aug 15 '11 at 17:13
14  
@Steve Jessop: I wouldn't want to comment on the Community voting pattern really, it's usually just a chain reaction(I have 125+ votes on an answer of mine which does nothing but quotes the standard). Let us All just pick up a nooky corner of C11 as an Question and then earn a ton of rep of on it since no one knows the standard that well. – Als Aug 15 '11 at 17:34
10  
It may be an interesting answer, but its to a question that you would never encounter in real code. Code like that would never pass code review. – Loki Astari Aug 15 '11 at 17:56
show 19 more comments
feedback

2 Answers

up vote 64 down vote accepted

First, we'll take a bog-standard abstract UDT (User-Defined Type):

struct foo { virtual void f() = 0; }; // normal abstract type
foo obj;
// error: cannot declare variable 'obj' to be of abstract type 'foo'

Let's also recall that we can instantiate the UDT at the same time that we define it:

struct foo { foo() { cout << "!"; } };          // just a definition

struct foo { foo() { cout << "!"; } } instance; // so much more
// Output: "!"

Let's combine the examples, and recall that we can define a UDT that has no name:

struct { virtual void f() = 0; } instance; // unnamed abstract type
// error: cannot declare variable 'instance' to be of abstract type '<anonymous struct>'

We don't need the proof about the anonymous UDT any more, so we can lose the pure virtual function. Also renaming instance to foo, we're left with:

struct {} foo;

Getting close.


Now, what if this anonymous UDT were to derive from some base?

struct bar {};       // base UDT
struct : bar {} foo; // anonymous derived UDT, and instance thereof

Finally, C++11 introduces extended initialisers, such that we can do confusing things like this:

int x{0};

And this:

int x{};

And, finally, this:

struct : bar {} foo {};

This is an unnamed struct deriving from bar, instantiated as foo with a blank initializer.

link|improve this answer
18  
"Abusing the parser: C++ edition". Great answer. – Etienne de Martel Aug 15 '11 at 16:41
7  
+1 great extensive answer, explaining everything! – Christian Rau Aug 15 '11 at 16:42
22  
+1, a great answer. And now I'm sure I don't want to learn C++. – Larry K Aug 15 '11 at 16:43
15  
@Larry K missing out on such a versatile language just because of an example on how to completely abuse it doesn't seem like the smartest decision ;] – stijn Aug 15 '11 at 16:46
10  
@Giorgio: To be honest, any such effort would have to work on rebuilding C++ from the ground up, i.e. creating a new language. And that has been done... many times. – Lightness Races in Orbit Aug 15 '11 at 17:04
show 25 more comments
feedback

This defines:

  • an anonymous struct,
  • which is derived privately from bar
  • which (anonymously) defines nothing else but what it derived from bar
  • and finally, an instance, called "foo" is created,
  • with an empty initializer list

struct : bar {} foo {};
link|improve this answer
2  
Why are you so aggressive this week? Do not include this chatter in your posts, please. – Lightness Races in Orbit Jan 2 at 15:15
2  
@TomalakGeret'kal: I must confess... thx for withholding me :/ – Frunsi Jan 2 at 15:59
The anonymous class-type derives publicly from bar. I think the private vs. public default access for base classes matches that for members inside the definition block (which is private for class and public for struct). – CTMacUser Apr 6 at 9:30
feedback

Your Answer

 
or
required, but never shown

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