Connecting Tech Pros Worldwide Forums | Help | Site Map

a small precompiler question

arjor
Guest
 
Posts: n/a
#1: Jun 27 '08
hey guys

i was wondering what's the difference between the following commands:

#ifndef
#if !defined

looks to be the same or is it ?

Ian Collins
Guest
 
Posts: n/a
#2: Jun 27 '08

re: a small precompiler question


arjor wrote:

[it's preprocessor, not precompiler]
Quote:
hey guys
>
i was wondering what's the difference between the following commands:
>
#ifndef
#if !defined
>
looks to be the same or is it ?
They are synonymous.

--
Ian Collins.
arjor
Guest
 
Posts: n/a
#3: Jun 27 '08

re: a small precompiler question


On 19 מאי, 01:13, Ian Collins <ian-n...@hotmail.comwrote:
Quote:
arjor wrote:
>
[it's preprocessor, not precompiler]
>
Quote:
hey guys
>
Quote:
i was wondering what's the difference between the following commands:
>
Quote:
#ifndef
#if !defined
>
Quote:
looks to be the same or is it ?
>
They are synonymous.
>
--
Ian Collins.
Thanks for the quick reply
red floyd
Guest
 
Posts: n/a
#4: Jun 27 '08

re: a small precompiler question


Ian Collins wrote:
Quote:
arjor wrote:
>
[it's preprocessor, not precompiler]
>
Quote:
>hey guys
>>
>i was wondering what's the difference between the following commands:
>>
>#ifndef
>#if !defined
>>
>looks to be the same or is it ?
>
They are synonymous.
>
They are synonymous, except that !defined can be used in a preprocessor
expression...

e.g.:

#if !defined(THIS) && defined(THAT)

Jerry Coffin
Guest
 
Posts: n/a
#5: Jun 27 '08

re: a small precompiler question


In article <3e67744b-5027-49e6-987a-646f97e27f51@
34g2000hsh.googlegroups.com>, asnast@gmail.com says...
Quote:
hey guys
>
i was wondering what's the difference between the following commands:
>
#ifndef
#if !defined
>
looks to be the same or is it ?
As-is, they're synonyms. The latter allows combinations of boolean logic
such as:

#if !defined(x) && !defined(y)

which are clumsier to produce with #ifndef.

--
Later,
Jerry.

The universe is a figment of its own imagination.
James Kanze
Guest
 
Posts: n/a
#6: Jun 27 '08

re: a small precompiler question


On May 19, 2:23 am, r...@zedat.fu-berlin.de (Stefan Ram) wrote:
Quote:
red floyd <no.s...@here.dudewrites:
Quote:
Quote:
>>i was wondering what's the difference between the following commands:
>>#ifndef
>>#if !defined
>They are synonymous.
They are synonymous, except that !defined can be used in a
preprocessor expression...
Quote:
This is not an exception to the assertion that these commands
are synonymous, because assertions about whether !defined
can be used in such an expression are not in the scope of the
assertion of the synonymity of these two preprocessor
commands.
Yes and no. In the first case, you have the preprocessor
command #ifndef, in the second the preprocessor command #if. It
really depends on what you consider is a "preprocessor command".
Quote:
For another example, the statements i++; and ++i; are
synonymous, but the expressions i++ and ++i are not.
But the assertion about the expressions is not an exception
to the assertion about the statements.
Yes, but he clearly doesn't have a complete preprocessor
directive in either case, since there's no symbol after the
#ifndef or the defined.
Quote:
However, the above preprocessor commands actually are not
commands at all, but directives - preprocessing directives.
What he wrote are not legal preprocessing directives. More is
needed. The first is considerably more restrictive with regards
to what that more can be.

--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique oriente objet/
Beratung in objektorientierter Datenverarbeitung
9 place Smard, 78210 St.-Cyr-l'cole, France, +33 (0)1 30 23 00 34

Closed Thread