What is the difference between “keyword” and “reserved word”?

前端 未结 10 2468
再見小時候
再見小時候 2020-12-13 05:54

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

10条回答
  •  天涯浪人
    2020-12-13 06:44

    A good example of this distinction is "goto" in Java. It's not a language keyword (i.e. it's not valid Java), but it is a reserved word.

    It seems that the java designers are telling us "We're not going to use 'goto', and neither are you".

提交回复
热议问题