Keywords have fixed meaning defined by the C++ standard and cannot be used as identifiers. It is illegal to redefine keywords using the preprocessor in any translation unit that includes a standard library header. However, keywords lose their special meaning inside attributes.
The full list of keywords is as follows:
alignas (since C++11)alignof (since C++11)asmauto: since C++11, before C++11boolbreakcasecatchcharchar16_t (since C++11)char32_t (since C++11)classconstconstexpr (since C++11)const_castcontinuedecltype (since C++11)defaultdelete for memory management, for functions (since C++11)dodoubledynamic_castelseenumexplicitexportextern as declaration specifier, in linkage specification, for templatesfalsefloatforfriendgotoifinline for functions, for namespaces (since C++11), for variables (since C++17)intlongmutablenamespacenewnoexcept (since C++11)nullptr (since C++11)operatorprivateprotectedpublicregisterreinterpret_castreturnshortsignedsizeofstaticstatic_assert (since C++11)static_caststructswitchtemplatethisthread_local (since C++11)throwtruetrytypedeftypeidtypenameunionunsignedusing to redeclare a name, to alias a namespace, to alias a typevirtual for functions, for base classesvoidvolatilewchar_twhileThe tokens final and override are not keywords. They may be used as identifiers and have special meaning only in certain contexts.
The tokens and, and_eq, bitand, bitor, compl, not, not_eq, or, or_eq, xor, and xor_eq are alternative spellings of &&, &=, &, |, ~, !, !=, ||, |=, ^, and ^=, respectively. The standard does not treat them as keywords, but they are keywords for all intents and purposes, since it is impossible to redefine them or use them to mean anything other than the operators they represent.
The following topics contain detailed explanations of many of the keywords in C++, which serve fundamental purposes such as naming basic types or controlling the flow of execution.