Is there anywhere that lists C++ keywords? Like a huge list of 'em?
I don't know if keyword is correct, but anything that would be made blue in MSVC++ IDE.
Printable View
Is there anywhere that lists C++ keywords? Like a huge list of 'em?
I don't know if keyword is correct, but anything that would be made blue in MSVC++ IDE.
You mean reserved words? The language spec will have them :)
The what? :confused:
Specification.
Check your MSDN Library for Visual Studio 6, Visual C++ Documentation and somewhere, I think Reference ... not sure, there are some keywords listed. It's not a huge list, but I guess those would be the ones marked blue in an IDE ...
Maybe its what you're looking for ..
...ah, I think I remember. Reference->C/C++ Lang->C++ Lang Ref
->Lexical Conventions->C++ keywords. Something like that ...
cheers,
Alex
I actually meant the ISO documentation, but hey, MSDN will work :D
Filtered from MSDN
bool break case catch char class const const_cast continue default delete do double dynamic_cast else enum explicit extern false float for friend goto if inline int long mutable namespace new operator private protected public register reinterpret_cast return short signed sizeof static static_cast struct switch template this throw true try typedef typeid typename union unsigned virtual void volatile wchar_t while
Thanks, CornedBee.