Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

152 lines
6.2KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Copyright (C) 1988-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; with the
  7. Invariant Sections being "Funding Free Software", the Front-Cover
  8. Texts being (a) (see below), and with the Back-Cover Texts being (b)
  9. (see below). A copy of the license is included in the section entitled
  10. "GNU Free Documentation License".
  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>Function Names (Using the GNU Compiler Collection (GCC))</title>
  21. <meta name="description" content="Function Names (Using the GNU Compiler Collection (GCC))">
  22. <meta name="keywords" content="Function Names (Using the GNU Compiler Collection (GCC))">
  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="Option-Index.html#Option-Index" rel="index" title="Option Index">
  28. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  29. <link href="C-Extensions.html#C-Extensions" rel="up" title="C Extensions">
  30. <link href="Return-Address.html#Return-Address" rel="next" title="Return Address">
  31. <link href="Incomplete-Enums.html#Incomplete-Enums" rel="prev" title="Incomplete Enums">
  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="Function-Names"></a>
  62. <div class="header">
  63. <p>
  64. Next: <a href="Return-Address.html#Return-Address" accesskey="n" rel="next">Return Address</a>, Previous: <a href="Incomplete-Enums.html#Incomplete-Enums" accesskey="p" rel="prev">Incomplete Enums</a>, Up: <a href="C-Extensions.html#C-Extensions" accesskey="u" rel="up">C Extensions</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
  65. </div>
  66. <hr>
  67. <a name="Function-Names-as-Strings"></a>
  68. <h3 class="section">6.50 Function Names as Strings</h3>
  69. <a name="index-_005f_005ffunc_005f_005f-identifier"></a>
  70. <a name="index-_005f_005fFUNCTION_005f_005f-identifier"></a>
  71. <a name="index-_005f_005fPRETTY_005fFUNCTION_005f_005f-identifier"></a>
  72. <p>GCC provides three magic constants that hold the name of the current
  73. function as a string. In C++11 and later modes, all three are treated
  74. as constant expressions and can be used in <code>constexpr</code> constexts.
  75. The first of these constants is <code>__func__</code>, which is part of
  76. the C99 standard:
  77. </p>
  78. <p>The identifier <code>__func__</code> is implicitly declared by the translator
  79. as if, immediately following the opening brace of each function
  80. definition, the declaration
  81. </p>
  82. <div class="smallexample">
  83. <pre class="smallexample">static const char __func__[] = &quot;function-name&quot;;
  84. </pre></div>
  85. <p>appeared, where function-name is the name of the lexically-enclosing
  86. function. This name is the unadorned name of the function. As an
  87. extension, at file (or, in C++, namespace scope), <code>__func__</code>
  88. evaluates to the empty string.
  89. </p>
  90. <p><code>__FUNCTION__</code> is another name for <code>__func__</code>, provided for
  91. backward compatibility with old versions of GCC.
  92. </p>
  93. <p>In C, <code>__PRETTY_FUNCTION__</code> is yet another name for
  94. <code>__func__</code>, except that at file scope (or, in C++, namespace scope),
  95. it evaluates to the string <code>&quot;top level&quot;</code>. In addition, in C++,
  96. <code>__PRETTY_FUNCTION__</code> contains the signature of the function as
  97. well as its bare name. For example, this program:
  98. </p>
  99. <div class="smallexample">
  100. <pre class="smallexample">extern &quot;C&quot; int printf (const char *, ...);
  101. class a {
  102. public:
  103. void sub (int i)
  104. {
  105. printf (&quot;__FUNCTION__ = %s\n&quot;, __FUNCTION__);
  106. printf (&quot;__PRETTY_FUNCTION__ = %s\n&quot;, __PRETTY_FUNCTION__);
  107. }
  108. };
  109. int
  110. main (void)
  111. {
  112. a ax;
  113. ax.sub (0);
  114. return 0;
  115. }
  116. </pre></div>
  117. <p>gives this output:
  118. </p>
  119. <div class="smallexample">
  120. <pre class="smallexample">__FUNCTION__ = sub
  121. __PRETTY_FUNCTION__ = void a::sub(int)
  122. </pre></div>
  123. <p>These identifiers are variables, not preprocessor macros, and may not
  124. be used to initialize <code>char</code> arrays or be concatenated with string
  125. literals.
  126. </p>
  127. <hr>
  128. <div class="header">
  129. <p>
  130. Next: <a href="Return-Address.html#Return-Address" accesskey="n" rel="next">Return Address</a>, Previous: <a href="Incomplete-Enums.html#Incomplete-Enums" accesskey="p" rel="prev">Incomplete Enums</a>, Up: <a href="C-Extensions.html#C-Extensions" accesskey="u" rel="up">C Extensions</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
  131. </div>
  132. </body>
  133. </html>