C++ keywords - cppreference.com

생성일
Mar 20, 2021 10:03 AM
언어
C++
분야
URL
 
This is a list of reserved keywords in C++. Since they are used by the language, these keywords are not available for re-definition or overloading.
alignas (since C++11) alignof (since C++11) and and_eq asm atomic_cancel (TM TS) atomic_commit (TM TS) atomic_noexcept (TM TS) auto (1) bitand bitor bool break case catch char char8_t (since C++20) char16_t (since C++11) char32_t (since C++11) class (1) compl concept (since C++20) const consteval (since C++20) constexpr (since C++11) constinit (since C++20) const_cast continue co_await (since C++20) co_return (since C++20) co_yield (since C++20)
  • (1) — meaning changed or new meaning added in C++11.
  • (2) — meaning changed in C++17.
  • (3) — meaning changed in C++20.
Note that and, bitor, or, xor, compl, bitand, and_eq, or_eq, xor_eq, not, and not_eq (along with the digraphs <%, %>, <:, :>, %:, and %:%:) provide an alternative way to represent standard tokens.
In addition to keywords, there are identifiers with special meaning, which may be used as names of objects or functions, but have special meaning in certain contexts.
Also, all identifiers that contain a double underscore __ in any position and each identifier that begins with an underscore followed by an uppercase letter is always reserved and all identifiers that begin with an underscore are reserved for use as names in the global namespace. See identifiers for more details.
The namespace std is used to place names of the standard C++ library. See Extending namespace std for the rules about adding names to it.
The name posix is reserved for a future top-level namespace. The behavior is undefined if a program declares or defines anything in that namespace.
The following tokens are recognized by the preprocessor when in context of a preprocessor directive:
The following tokens are recognized by the preprocessor outside the context of a preprocessor directive: