Say I have

struct mystruct
{
};

Is there a difference between:

void foo(struct mystruct x){}

and

void foo(mystruct x){}

?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Not in the code you've written. The only difference I know of between using a defined class name with and without struct is the following:

struct mystruct
{
};

void mystruct() {}

void foo(struct mystruct x){} // compiles
void foo(mystruct x){} // doesn't - for compatibility with C "mystruct" means the function

So, don't define a function with the same name as a class.

link|improve this answer
Insidious - since when are you allowed to have a function of the same name as a type? – Kerrek SB Sep 8 '11 at 13:43
@Kerrek: same name as a struct, since K&R C. structs occupy a different namespace from typedefs and functions. IIRC the way C++ introduces mystruct for use without the struct prefix isn't actually by typedefing it, there's just a name resolution rule somewhere that says if you can't find a name in scope, check for a struct in that scope before moving on to the next scope. – Steve Jessop Sep 8 '11 at 13:43
Nice, didn't know you could do that. Thanks! – Luchian Grigore Sep 8 '11 at 13:45
feedback

In C the latter isn't valid.

However in C++ they're almost the same: The first one would be valid if you haven't yet declared your struct at all, it would treat it as a forward declaration of the parameter all in one.

link|improve this answer
1  
Ahh, the implicit forward declaration is a nice subtlety! +1 – Kerrek SB Sep 8 '11 at 13:39
+1, can you also dig up the standard ref for this? – Jon Sep 8 '11 at 13:41
Good answer, but @Steve raised a nice point. – Luchian Grigore Sep 8 '11 at 13:43
feedback

No difference. The latter is the correct C++ syntax; the former is permissible as a legacy variant for recovering C programmers.

Note that struct and class are essentially the same and both define a class, so there's no special treatment for C-style POD structs in C++.

[Edit: Apparently there is a small difference, see Mark B's excellent answer.]

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.