Connecting Tech Pros Worldwide Help | Site Map

a small precompiler question

 
LinkBack Thread Tools Search this Thread
  #1  
Old June 27th, 2008, 04:43 PM
arjor
Guest
 
Posts: n/a
Default a small precompiler question

hey guys

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

#ifndef
#if !defined

looks to be the same or is it ?

  #2  
Old June 27th, 2008, 04:43 PM
Ian Collins
Guest
 
Posts: n/a
Default 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.
  #3  
Old June 27th, 2008, 04:43 PM
arjor
Guest
 
Posts: n/a
Default 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
  #4  
Old June 27th, 2008, 04:43 PM
red floyd
Guest
 
Posts: n/a
Default 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)

  #5  
Old June 27th, 2008, 04:43 PM
Jerry Coffin
Guest
 
Posts: n/a
Default 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.
  #6  
Old June 27th, 2008, 04:43 PM
James Kanze
Guest
 
Posts: n/a
Default 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

 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,840 network members.