472,353 Members | 1,908 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,353 software developers and data experts.

"void Method()" vs "void Method(void)"

Hello,

I would like to know if there is a difference in c++ between the
following two method-declarations:

void Method();

and

void Method(void);
I know there is a difference in C (the first case means the function may
have parameters, but they are not yet defined?).
But how is the semantik in C++? Is there a difference or are both
declarations equal in _every_ case?

I would be glad to get an answer to this question (and perhaps a
reference where this topic is explained (C++-standard?)).

Regards
ollej
Jul 23 '05 #1
7 2478

"Ollej Reemt" <ol***@gmx.de> wrote in message
news:d4********@news.Informatik.Uni-Oldenburg.DE...
Hello,

I would like to know if there is a difference in c++ between the
following two method-declarations:

void Method();

and

void Method(void);


They are same. Former is the preferred type in C++. Reference to the
Standard --

8.3.5/2 - "...If the parameter-declaration-clause is empty, the function
takes no arguments. The parameter list (void) is equivalent to the empty
parameter list."

Sharad
Jul 23 '05 #2
Ollej Reemt wrote:
Hello,

I would like to know if there is a difference in c++ between the
following two method-declarations:

void Method();

and

void Method(void);
I know there is a difference in C (the first case means the function may
have parameters, but they are not yet defined?).
But how is the semantik in C++? Is there a difference or are both
declarations equal in _every_ case?

I would be glad to get an answer to this question (and perhaps a
reference where this topic is explained (C++-standard?)).

Regards
ollej


In addition to Sharad's reply, I prefer the latter method since
it is explicit and works in both languages.

--
Thomas Matthews

C++ newsgroup welcome message:
http://www.slack.net/~shiva/welcome.txt
C++ Faq: http://www.parashift.com/c++-faq-lite
C Faq: http://www.eskimo.com/~scs/c-faq/top.html
alt.comp.lang.learn.c-c++ faq:
http://www.comeaucomputing.com/learn/faq/
Other sites:
http://www.josuttis.com -- C++ STL Library book
http://www.sgi.com/tech/stl -- Standard Template Library
Jul 23 '05 #3
Hello Sharad and Thomas,

thanks for your answers, that was exactly what I wanted to know.

Regards
ollej
Jul 23 '05 #4
Thomas Matthews wrote:
I know there is a difference in C (the first case means the function may
have parameters, but they are not yet defined?).
But how is the semantik in C++? Is there a difference or are both
declarations equal in _every_ case?

I would be glad to get an answer to this question (and perhaps a
reference where this topic is explained (C++-standard?)).

Regards
ollej


In addition to Sharad's reply, I prefer the latter method since
it is explicit and works in both languages.


The point about it working in both languages is valid - if you make a header
that is supposed to be used in both languages, but how is it explicit?
IMHO, if you want to say "no parameters", the most explicit way to describe
that is by putting no parameters between the parens, not by putting a fake
parameter of type void there.

Jul 23 '05 #5
Rolf Magnus wrote:
Thomas Matthews wrote:
I know there is a difference in C (the first case means the
function may have parameters, but they are not yet defined?).
But how is the semantik in C++? Is there a difference or are both
declarations equal in _every_ case?

I would be glad to get an answer to this question (and perhaps a
reference where this topic is explained (C++-standard?)).

Regards
ollej


In addition to Sharad's reply, I prefer the latter method since
it is explicit and works in both languages.


The point about it working in both languages is valid - if you make a
header that is supposed to be used in both languages, but how is it
explicit? IMHO, if you want to say "no parameters", the most explicit
way to describe that is by putting no parameters between the parens,
not by putting a fake parameter of type void there.


I believe 'explicit' in this case refers to what Ollej originally said:
in C, an empty parameter list does not necessarily mean that the
function takes no arguments. In a header file shared between C and C++
code, foo(void) will *explicitly* tell either language that foo takes
no arguments. Writing foo() will only explicitly say that to C++ code.

Kristo

Jul 23 '05 #6
Kristo wrote:
Rolf Magnus wrote:
Thomas Matthews wrote:

I know there is a difference in C (the first case means the
function may have parameters, but they are not yet defined?).
But how is the semantik in C++? Is there a difference or are both
declarations equal in _every_ case?

I would be glad to get an answer to this question (and perhaps a
reference where this topic is explained (C++-standard?)).

Regards
ollej

In addition to Sharad's reply, I prefer the latter method since
it is explicit and works in both languages.


The point about it working in both languages is valid - if you make a
header that is supposed to be used in both languages, but how is it
explicit? IMHO, if you want to say "no parameters", the most explicit
way to describe that is by putting no parameters between the parens,
not by putting a fake parameter of type void there.

I believe 'explicit' in this case refers to what Ollej originally said:
in C, an empty parameter list does not necessarily mean that the
function takes no arguments. In a header file shared between C and C++
code, foo(void) will *explicitly* tell either language that foo takes
no arguments. Writing foo() will only explicitly say that to C++ code.


And what Rolf said is still true: in English having something to designate
nothing is the source of confusion. Haven't you seen (in the Standard, no
less) pages, where the only _content_ is "this page is left intentionally
blank". Isn't it a self-contradictory statement? That's what "explicitly
emtpy argument list" means in C++: no arguments, nothing between the
opening parenthesis and the closing one. I actually strongly agree with
Rolf on this one. To be _explicit_, one should simply have bare parens.

V
Jul 23 '05 #7
On Wed, 20 Apr 2005 14:43:57 -0400, Victor Bazarov
<v.********@comAcast.net> wrote in comp.lang.c++:
Kristo wrote:
Rolf Magnus wrote:
Thomas Matthews wrote:
>I know there is a difference in C (the first case means the
>function may have parameters, but they are not yet defined?).
>But how is the semantik in C++? Is there a difference or are both
>declarations equal in _every_ case?
>
>I would be glad to get an answer to this question (and perhaps a
>reference where this topic is explained (C++-standard?)).
>
>Regards
>ollej

In addition to Sharad's reply, I prefer the latter method since
it is explicit and works in both languages.

The point about it working in both languages is valid - if you make a
header that is supposed to be used in both languages, but how is it
explicit? IMHO, if you want to say "no parameters", the most explicit
way to describe that is by putting no parameters between the parens,
not by putting a fake parameter of type void there.

I believe 'explicit' in this case refers to what Ollej originally said:
in C, an empty parameter list does not necessarily mean that the
function takes no arguments. In a header file shared between C and C++
code, foo(void) will *explicitly* tell either language that foo takes
no arguments. Writing foo() will only explicitly say that to C++ code.


And what Rolf said is still true: in English having something to designate
nothing is the source of confusion. Haven't you seen (in the Standard, no
less) pages, where the only _content_ is "this page is left intentionally
blank". Isn't it a self-contradictory statement? That's what "explicitly
emtpy argument list" means in C++: no arguments, nothing between the
opening parenthesis and the closing one. I actually strongly agree with
Rolf on this one. To be _explicit_, one should simply have bare parens.

V


Once upon a time, I wrote the users manual for a product. I generated
some of the illustrations from AutoCAD drawings of some of the
mechanical parts. As a joke, I created one drawing of a part cracked
in half to go along with the text warning the user about doing
something that could cause damage.

The powers that be saw it, decided it was funny, and wanted it in the
manual. Then at the very last minute, they changed their mind and
wanted it out.

So when the manual was printed, it had several of those pages that
said "this page intentionally blank", and one page, the one that had
held that particular illustration, that said "this page
unintentionally left blank."

Nobody ever noticed.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Jul 23 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

188
by: infobahn | last post by:
printf("%p\n", (void *)0); /* UB, or not? Please explain your answer. */
7
by: sunglo | last post by:
My doubt comes from trying to understand how thread return values work (I know, it's off topic here), and I'm wondering about the meaning of the...
9
by: Igor Okulist | last post by:
int func(void**); { short* p = NULL; func(&p); //<<< here } Could somebody remind me why is this not allowed ? error message: "cannot...
1
by: hpandey | last post by:
sigaction : using "void (*sa_sigaction)(int, siginfo_t *, void *);" ...
7
by: =?Utf-8?B?cmFtbzk5NDE=?= | last post by:
Hi, Is there any way disable using "protected override void OnPaint(..." method out of the assembly. I create usercontrol and i do not want user...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.