Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

Undefining-and-Redefining-Macros.html 6.5KB

3 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Copyright (C) 1987-2020 Free Software Foundation, Inc.
  4. Permission is granted to copy, distribute and/or modify this document
  5. under the terms of the GNU Free Documentation License, Version 1.3 or
  6. any later version published by the Free Software Foundation. A copy of
  7. the license is included in the
  8. section entitled "GNU Free Documentation License".
  9. This manual contains no Invariant Sections. The Front-Cover Texts are
  10. (a) (see below), and the Back-Cover Texts are (b) (see below).
  11. (a) The FSF's Front-Cover Text is:
  12. A GNU Manual
  13. (b) The FSF's Back-Cover Text is:
  14. You have freedom to copy and modify this GNU Manual, like GNU
  15. software. Copies published by the Free Software Foundation raise
  16. funds for GNU development. -->
  17. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  18. <head>
  19. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  20. <title>Undefining and Redefining Macros (The C Preprocessor)</title>
  21. <meta name="description" content="Undefining and Redefining Macros (The C Preprocessor)">
  22. <meta name="keywords" content="Undefining and Redefining Macros (The C Preprocessor)">
  23. <meta name="resource-type" content="document">
  24. <meta name="distribution" content="global">
  25. <meta name="Generator" content="makeinfo">
  26. <link href="index.html#Top" rel="start" title="Top">
  27. <link href="Index-of-Directives.html#Index-of-Directives" rel="index" title="Index of Directives">
  28. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  29. <link href="Macros.html#Macros" rel="up" title="Macros">
  30. <link href="Directives-Within-Macro-Arguments.html#Directives-Within-Macro-Arguments" rel="next" title="Directives Within Macro Arguments">
  31. <link href="C_002b_002b-Named-Operators.html#C_002b_002b-Named-Operators" rel="prev" title="C++ Named Operators">
  32. <style type="text/css">
  33. <!--
  34. a.summary-letter {text-decoration: none}
  35. blockquote.indentedblock {margin-right: 0em}
  36. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  37. blockquote.smallquotation {font-size: smaller}
  38. div.display {margin-left: 3.2em}
  39. div.example {margin-left: 3.2em}
  40. div.lisp {margin-left: 3.2em}
  41. div.smalldisplay {margin-left: 3.2em}
  42. div.smallexample {margin-left: 3.2em}
  43. div.smalllisp {margin-left: 3.2em}
  44. kbd {font-style: oblique}
  45. pre.display {font-family: inherit}
  46. pre.format {font-family: inherit}
  47. pre.menu-comment {font-family: serif}
  48. pre.menu-preformatted {font-family: serif}
  49. pre.smalldisplay {font-family: inherit; font-size: smaller}
  50. pre.smallexample {font-size: smaller}
  51. pre.smallformat {font-family: inherit; font-size: smaller}
  52. pre.smalllisp {font-size: smaller}
  53. span.nolinebreak {white-space: nowrap}
  54. span.roman {font-family: initial; font-weight: normal}
  55. span.sansserif {font-family: sans-serif; font-weight: normal}
  56. ul.no-bullet {list-style: none}
  57. -->
  58. </style>
  59. </head>
  60. <body lang="en">
  61. <a name="Undefining-and-Redefining-Macros"></a>
  62. <div class="header">
  63. <p>
  64. Next: <a href="Directives-Within-Macro-Arguments.html#Directives-Within-Macro-Arguments" accesskey="n" rel="next">Directives Within Macro Arguments</a>, Previous: <a href="Predefined-Macros.html#Predefined-Macros" accesskey="p" rel="prev">Predefined Macros</a>, Up: <a href="Macros.html#Macros" accesskey="u" rel="up">Macros</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index-of-Directives.html#Index-of-Directives" title="Index" rel="index">Index</a>]</p>
  65. </div>
  66. <hr>
  67. <a name="Undefining-and-Redefining-Macros-1"></a>
  68. <h3 class="section">3.8 Undefining and Redefining Macros</h3>
  69. <a name="index-undefining-macros"></a>
  70. <a name="index-redefining-macros"></a>
  71. <a name="index-_0023undef"></a>
  72. <p>If a macro ceases to be useful, it may be <em>undefined</em> with the
  73. &lsquo;<samp>#undef</samp>&rsquo; directive. &lsquo;<samp>#undef</samp>&rsquo; takes a single argument, the
  74. name of the macro to undefine. You use the bare macro name, even if the
  75. macro is function-like. It is an error if anything appears on the line
  76. after the macro name. &lsquo;<samp>#undef</samp>&rsquo; has no effect if the name is not a
  77. macro.
  78. </p>
  79. <div class="smallexample">
  80. <pre class="smallexample">#define FOO 4
  81. x = FOO; &rarr; x = 4;
  82. #undef FOO
  83. x = FOO; &rarr; x = FOO;
  84. </pre></div>
  85. <p>Once a macro has been undefined, that identifier may be <em>redefined</em>
  86. as a macro by a subsequent &lsquo;<samp>#define</samp>&rsquo; directive. The new definition
  87. need not have any resemblance to the old definition.
  88. </p>
  89. <p>However, if an identifier which is currently a macro is redefined, then
  90. the new definition must be <em>effectively the same</em> as the old one.
  91. Two macro definitions are effectively the same if:
  92. </p><ul>
  93. <li> Both are the same type of macro (object- or function-like).
  94. </li><li> All the tokens of the replacement list are the same.
  95. </li><li> If there are any parameters, they are the same.
  96. </li><li> Whitespace appears in the same places in both. It need not be
  97. exactly the same amount of whitespace, though. Remember that comments
  98. count as whitespace.
  99. </li></ul>
  100. <p>These definitions are effectively the same:
  101. </p><div class="smallexample">
  102. <pre class="smallexample">#define FOUR (2 + 2)
  103. #define FOUR (2 + 2)
  104. #define FOUR (2 /* <span class="roman">two</span> */ + 2)
  105. </pre></div>
  106. <p>but these are not:
  107. </p><div class="smallexample">
  108. <pre class="smallexample">#define FOUR (2 + 2)
  109. #define FOUR ( 2+2 )
  110. #define FOUR (2 * 2)
  111. #define FOUR(score,and,seven,years,ago) (2 + 2)
  112. </pre></div>
  113. <p>If a macro is redefined with a definition that is not effectively the
  114. same as the old one, the preprocessor issues a warning and changes the
  115. macro to use the new definition. If the new definition is effectively
  116. the same, the redefinition is silently ignored. This allows, for
  117. instance, two different headers to define a common macro. The
  118. preprocessor will only complain if the definitions do not match.
  119. </p>
  120. <hr>
  121. <div class="header">
  122. <p>
  123. Next: <a href="Directives-Within-Macro-Arguments.html#Directives-Within-Macro-Arguments" accesskey="n" rel="next">Directives Within Macro Arguments</a>, Previous: <a href="Predefined-Macros.html#Predefined-Macros" accesskey="p" rel="prev">Predefined Macros</a>, Up: <a href="Macros.html#Macros" accesskey="u" rel="up">Macros</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index-of-Directives.html#Index-of-Directives" title="Index" rel="index">Index</a>]</p>
  124. </div>
  125. </body>
  126. </html>