乡下人产国偷v产偷v自拍,国产午夜片在线观看,婷婷成人亚洲综合国产麻豆,久久综合给合久久狠狠狠9

  • <output id="e9wm2"></output>
    <s id="e9wm2"><nobr id="e9wm2"><ins id="e9wm2"></ins></nobr></s>

    • 分享

      standards

       嵌粉 2015-04-11

      The rules (which did not change in C++11):

      • Reserved in any scope, including for use as implementation macros:
        • identifiers beginning with an underscore and an uppercase letter
        • identifiers containing adjacent underscores (or "double underscore")
      • Reserved in the global namespaces:
        • identifiers beginning with an underscore
      • Also, everything in the std namespace is reserved. (You are allowed to add template specializations, though.)

      From the 2003 C++ Standard:

      17.4.3.2.1 Global names [lib.global.names]

      Certain sets of names and function signatures are always reserved to the implementation:

      • Each name that contains a double underscore (_ _) or begins with an underscore followed by an uppercase letter (2.11) is reserved to the implementation for any use.
      • Each name that begins with an underscore is reserved to the implementation for use as a name in the global namespace.165

      165) Such names are also reserved in namespace ::std (17.4.3.1).

      Because C++ is based on the C standard (1.1/2, C++03) and C99 is a normative reference (1.2/1, C++03) these also apply, from the 1999 C Standard:

      7.1.3 Reserved identifiers

      Each header declares or defines all identifiers listed in its associated subclause, and optionally declares or defines identifiers listed in its associated future library directions subclause and identifiers which are always reserved either for any use or for use as file scope identifiers.

      • All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use.
      • All identifiers that begin with an underscore are always reserved for use as identifiers with file scope in both the ordinary and tag name spaces.
      • Each macro name in any of the following subclauses (including the future library directions) is reserved for use as specified if any of its associated headers is included; unless explicitly stated otherwise (see 7.1.4).
      • All identifiers with external linkage in any of the following subclauses (including the future library directions) are always reserved for use as identifiers with external linkage.154
      • Each identifier with file scope listed in any of the following subclauses (including the future library directions) is reserved for use as a macro name and as an identifier with file scope in the same name space if any of its associated headers is included.

      No other identifiers are reserved. If the program declares or defines an identifier in a context in which it is reserved (other than as allowed by 7.1.4), or defines a reserved identifier as a macro name, the behavior is undefined.

      If the program removes (with #undef) any macro definition of an identifier in the first group listed above, the behavior is undefined.

      154) The list of reserved identifiers with external linkage includes errno, math_errhandling, setjmp, and va_end.

      Other restrictions might apply. For example, the POSIX standard reserves a lot of identifiers that are likely to show up in normal code:

      • Names beginning with a capital 'E' followed a digit or uppercase letter:
        • may be used for additional error code names.
      • Names that begin with either 'is' or 'to' followed by a lowercase letter
        • may be used for additional character testing and conversion functions.
      • Names that begin with 'LC_' followed by an uppercase letter
        • may be used for additional macros specifying locale attributes.
      • Names of all existing mathematics functions suffixed with 'f' or 'l' are reserved
        • for corresponding functions that operate on float and long double arguments, respectively.
      • Names that begin with 'SIG' followed by an uppercase letter are reserved
        • for additional signal names.
      • Names that begin with 'SIG_' followed by an uppercase letter are reserved
        • for additional signal actions.
      • Names beginning with 'str', 'mem', or 'wcs' followed by a lowercase letter are reserved
        • for additional string and array functions.
      • Names beginning with 'PRI' or 'SCN' followed by any lowercase letter or 'X' are reserved
        • for additional format specifier macros
      • Names that end with '_t' are reserved
        • for additional type names.

      While using these names for your own purposes right now might not cause a problem, they do raise the possibility of conflict with future versions of that standard.


      Personally I just don't start identifiers with underscores. New addition to my rule: Don't use double underscores anywhere, which is easy as I rarely use underscore.

      After doing research on this article I no longer end my identifiers with '_t' as this is reserved by the POSIX standard.

      The rule about any identifier ending with '_t' surprised me a lot. I think that is a POSIX standard (not sure yet) looking for clarification and official chapter and verse. This is from the GNU libtool manual, listing reserved names.

      CesarB provided the following link to the POSIX 2004 reserved symbols and notes 'that many other reserved prefixes and suffixes ... can be found there'. The POSIX 2008 reserved symbols are defined here. The restrictions are somewhat more nuanced than those above.

        本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
        轉(zhuǎn)藏 分享 獻花(0

        0條評論

        發(fā)表

        請遵守用戶 評論公約

        類似文章 更多