I've seen methods with the following signature:
void foo (void);
They take no argument, however I'm wondering whether doing this is useful or not. Is there a reason why you would want to do it?
|
I've seen methods with the following signature:
They take no argument, however I'm wondering whether doing this is useful or not. Is there a reason why you would want to do it? |
|||
|
The C++03 standard says (emphasis mine):
This means that if you are talking to the compiler it's just a matter of taste. If you are writing code that will be read by others, then the C++ way of doing things is
The other form remains valid only for reasons of compatibility with C, where there was a difference among the two signatures. |
|||||||
|
|
This is a holdover from older versions of C, where |
|||||||||||||
|
|
In C++ code there is no reason whatsoever to use void in this way. What's more it is very much not the idiomatic way to declare parameterless functions. |
|||
|
|
CClassname(void)and~CClassname(void)– nabulke Sep 14 '11 at 7:25