vote up 0 vote down star
1

Hello everyone,

I have seen two styles of defining conversion operator overload in C++,

  1. operator int* (void) const
  2. operator int*() const

Question 1. I think the two styles (whether add void or not) have the same function, correct? Question 2. Any preference which is better?

thanks in advance, George

flag

41% accept rate
Your title is pretty misleading / irrelevant. Something like "Which is preferred: foo(void) or foo()?" – Dan Jun 20 at 19:55
I agree. I have edit the title. – George2 Jun 21 at 10:30

3 Answers

vote up 9 vote down

This doesn't just apply to conversion operators but to all functions in C++ that take no parameters. Personally, I prefer to omit void for consistency.

The practice originates from C. Originally, when C did not have prototypes, an empty pair of braces was used in function declarations and did not provide any information about the parameters that the function expected.

When prototypes were added, empty braces were retained for function declarations to mean 'unspecified parameters' for flexibility and backwards compatibility. To provide an explicit prototype meaning 'takes no parameters', the syntax (void) was added.

In C++ all function declarations have to have prototypes, so () and (void) have the same meaning.

link|flag
"when C did not have prototypes" -- you mean in old days, C does not allow declare a function prototype? Curious. Could you show me how old C looks like in this context please? :-) – George2 Jun 20 at 10:27
"empty braces were retained for function declarations to mean 'unspecified parameters' for flexibility and backwards compatibility." -- confused about this, I think empty braces should mean no parameter, not 'unspecified parameters'? Any comments? – George2 Jun 20 at 10:28
1  
What do you mean 'should mean'? It's what they do mean in C++, but not what they mean in C. If C had always had prototypes then, yes, perhaps () could have been used to mean 'no parameters' as well. – Charles Bailey Jun 20 at 10:35
1  
There some old vs. new style examples in this HP manual: g4u0420c.houston.hp.com/en/B3901-90016/… – Charles Bailey Jun 20 at 10:41
+1. also, nice article. – Johannes Schaub - litb Jun 20 at 13:57
show 1 more comment
vote up 3 vote down

In C++ foo() and foo(void) are the same - "no arguments". In the C99 standard, the former means "undefined number of arguments", while the latter means "no arguments".

However, if you rely on the foo() behavior in C, you should be shot.

So this means that you can use either. Now personally, I like foo() better than foo(void), since I hate visual clutter, but that's just preference. I'm a Python guy :)

link|flag
Thanks, I prefer saving type too! – George2 Jun 20 at 10:26
A further question, in C++ they are the same, but in C, what is the answer? – George2 Jun 20 at 16:43
In C, a declaration of foo() means "undefined arguments", both in number and in type. – oggy Jun 21 at 16:02
vote up 2 vote down

This is really a duplicate of a previously asked question:

http://stackoverflow.com/questions/693788/c-void-arguments

Does that help?

link|flag
2  
Not really a duplicate, since that other question was explicitly about C, and this question is explicitly about C++, and the answer is different between the two. In C++ it's purely a cosmetic decision. – Steve Jessop Jun 20 at 10:55
2  
Yeah, really it's my answer to that question that is the duplicate of the correct answer to this question. – Earwicker Jun 20 at 11:44
@Earwicker, I read the discussion but confused about two points. 1. why In C void f() means "could take any number of parameters of unknown types"? 2. Maybe I am not developing in old days when prototype is not invented, I am confused but interested to learn the method in C of using "Identifier lists" method to declare a function. Could you recommend me some documents to read? – George2 Jun 20 at 16:42
2  
Because it's a 35 year old language with some strange history behind it. When there's something half-broken in a language (or several ways of doing the same thing), there may not be a good reason for it! It's just an old mistake that it would be too difficult to undo. The old style of declaring a function is from what is called "K&R C" after the initials of the authors of the book 'The C Programming Language'. See iu.hio.no/~mark/CTutorial/… for some historical information about the old way of declaring functions. Or find a 1st edition of the K&R book. – Earwicker Jun 20 at 17:27
1  
What do you mean "Why?" I guess the designers of the C programming language thought that would be a good idea. The predecessor languages of C (such as BCPL) didn't do any type checking at all (in fact BCPL didn't even have types). The idea that such things should be checked at all was regarded as a "luxury" by OS programmers in 1970. Today, there's no good reason to put up with such historical accidents unless you are maintaining ancient code. – Earwicker Jun 21 at 12:45
show 1 more comment

Your Answer

Get an OpenID
or

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