Say I have
struct mystruct
{
};
Is there a difference between:
void foo(struct mystruct x){}
and
void foo(mystruct x){}
?
|
Say I have
Is there a difference between:
and
?
| ||||
|
feedback
|
|
Not in the code you've written. The only difference I know of between using a defined class name with and without
So, don't define a function with the same name as a class. | |||||||
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. | |||||||||
feedback
|
|
No difference. The latter is the correct C++ syntax; the former is permissible as a legacy variant for recovering C programmers. Note that [Edit: Apparently there is a small difference, see Mark B's excellent answer.] | |||
|
feedback
|