vote up 1 vote down star

Possible Duplicate:
Is there a difference between foo(void) and foo() in C++ or C

  • void foo1(void){...}
  • void foo2(){...}

Are foo1 and foo2 equivalent? If they are, which one should be preferred?

flag

4  
Duplicate: stackoverflow.com/questions/51032/… – Konamiman Nov 6 at 11:20
This is a duplicate of stackoverflow.com/questions/51032/…. You should check that question, there is a good comprehensive answer there. – Simon P Stevens Nov 6 at 11:21
It's a duplicate question if C is the same as C++. However, the answer to that question also answers this question. Maybe "already answered" should be separate from "duplicate"... – Steve Jessop Nov 6 at 11:38
@onebyone: I see your point, but the spirit is still the same particularly as the reasons for using the former in C++ is to retain the same meaning in C. I've edited the other question to include reference to C and C++, and both tags, to make it more relevant. – Simon P Stevens Nov 6 at 11:57
Good call. In Wiki terms, you've merged the two questions, and I agree that's the right thing to do here. – Steve Jessop Nov 6 at 13:08

closed as exact duplicate by Simon P Stevens, Aaron Digulla, qrdl, pmg, Goz Nov 6 at 11:30

1 Answer

vote up -4 vote down

Yes, the signatures of foo1 and foo2 är equivalent.

The preference of usage is subjective. Personally I'd go for foo2 while others may prefer foo1.

link|flag
I use foo2 for definitions and foo1 for declarations. – Martinho Fernandes Nov 6 at 11:21
1  
No, they are not the same, and the choice is not subjective. There is good reason for using one over the other. See stackoverflow.com/questions/51032/… – Simon P Stevens Nov 6 at 11:25

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