⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 if.html

📁 gcc手册
💻 HTML
字号:
<html lang="en">

<head>

<title>The C Preprocessor</title>

<meta http-equiv="Content-Type" content="text/html">

<meta name="description" content="The C Preprocessor">

<meta name="generator" content="makeinfo 4.3">

<link href="http://www.gnu.org/software/texinfo/" rel="generator-home">

<!--

Copyright &copy; 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996,

1997, 1998, 1999, 2000, 2001, 2002, 2003

Free Software Foundation, Inc.



   <p>Permission is granted to copy, distribute and/or modify this document

under the terms of the GNU Free Documentation License, Version 1.1 or

any later version published by the Free Software Foundation.  A copy of

the license is included in the

section entitled "GNU Free Documentation License".



   <p>This manual contains no Invariant Sections.  The Front-Cover Texts are

(a) (see below), and the Back-Cover Texts are (b) (see below).



   <p>(a) The FSF's Front-Cover Text is:



   <p>A GNU Manual



   <p>(b) The FSF's Back-Cover Text is:



   <p>You have freedom to copy and modify this GNU Manual, like GNU

     software.  Copies published by the Free Software Foundation raise

     funds for GNU development. 

-->

</head>

<body>

<div class="node">

<p>

Node:<a name="If">If</a>,

Next:<a rel="next" accesskey="n" href="Defined.html#Defined">Defined</a>,

Previous:<a rel="previous" accesskey="p" href="Ifdef.html#Ifdef">Ifdef</a>,

Up:<a rel="up" accesskey="u" href="Conditional-Syntax.html#Conditional%20Syntax">Conditional Syntax</a>

<hr><br>

</div>



<h4 class="subsection">If</h4>



   <p>The <code>#if</code> directive allows you to test the value of an arithmetic

expression, rather than the mere existence of one macro.  Its syntax is



<pre class="example">     #if <var>expression</var>

     

     <var>controlled text</var>

     

     #endif /* <var>expression</var> */

     </pre>



   <p><var>expression</var> is a C expression of integer type, subject to stringent

restrictions.  It may contain



     <ul>

<li>Integer constants.



     <li>Character constants, which are interpreted as they would be in normal

code.



     <li>Arithmetic operators for addition, subtraction, multiplication,

division, bitwise operations, shifts, comparisons, and logical

operations (<code>&amp;&amp;</code> and <code>||</code>).  The latter two obey the usual

short-circuiting rules of standard C.



     <li>Macros.  All macros in the expression are expanded before actual

computation of the expression's value begins.



     <li>Uses of the <code>defined</code> operator, which lets you check whether macros

are defined in the middle of an <code>#if</code>.



     <li>Identifiers that are not macros, which are all considered to be the

number zero.  This allows you to write <code>#if&nbsp;MACRO</code> instead of

<code>#ifdef&nbsp;MACRO</code>, if you know that MACRO, when defined, will

always have a nonzero value.  Function-like macros used without their

function call parentheses are also treated as zero.



     <p>In some contexts this shortcut is undesirable.  The <code>-Wundef</code>

option causes GCC to warn whenever it encounters an identifier which is

not a macro in an <code>#if</code>. 

</ul>



   <p>The preprocessor does not know anything about types in the language. 

Therefore, <code>sizeof</code> operators are not recognized in <code>#if</code>, and

neither are <code>enum</code> constants.  They will be taken as identifiers

which are not macros, and replaced by zero.  In the case of

<code>sizeof</code>, this is likely to cause the expression to be invalid.



   <p>The preprocessor calculates the value of <var>expression</var>.  It carries

out all calculations in the widest integer type known to the compiler;

on most machines supported by GCC this is 64 bits.  This is not the same

rule as the compiler uses to calculate the value of a constant

expression, and may give different results in some cases.  If the value

comes out to be nonzero, the <code>#if</code> succeeds and the <var>controlled

text</var> is included; otherwise it is skipped.



   <p>If <var>expression</var> is not correctly formed, GCC issues an error and

treats the conditional as having failed.



   </body></html>



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -