What is the difference between “keyword” and “reserved word”?
问题 What's the difference between a keyword and a reserved word ? For example, in the proposal for concepts in C++ one can read the following statement: This proposal introduces five new keywords: concept, concept map, where, axiom, and late check. All of these keywords will also be reserved words. 回答1: Keywords have a special meaning in a language, and are part of the syntax. Reserved words are words that cannot be used as identifiers (variables, functions, etc.), because they are reserved by