http://en.cppreference.com/w/cpp/keyword
C++ keywords
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) | enum | return |
- (1) - meaning changed in C++11
In addition to keywords, there are two identifiers with special meaning, which may be used as names of objects or functions, but have special meaning in certain contexts.
override(C++11) final(C++11) |
Also, each name that contains a double underscore __ or begins with an underscore followed by an uppercase letter is always reserved to the implementation and should not be used as an identifier. Each name that begins with an underscore is reserved to the implementation for use as a name in the global namespace; such names may be used as identifiers in user-defined namespaces, as names of class members, etc.
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.
'컴퓨터 과학 & 영상처리 관련 > C / C++' 카테고리의 다른 글
동적할당 new BYTE()와 new BYTE[] (0) | 2012.07.18 |
---|---|
int min = (int)10e10, (int)-10e10 이게 크기가 얼마나 되냐? (0) | 2012.07.17 |
cpp 캐스트 연산자 (0) | 2012.07.10 |
템플릿 , 연산자 오버로딩 등 (0) | 2012.07.10 |
소멸자를 가상 함수로(상속할 가능성이 있는 클래스의 소멸자를) (0) | 2012.07.10 |