本文共 572 字,大约阅读时间需要 1 分钟。
关键字:在编程语言中有一些事先定义的,有着特殊含义和用途的单词
保留字:和关键字一样都是编程语言事先定义好的,只是说现在暂时没有特殊用途,但说不定以后某天会突然被赋予意义和被使用到,因此被保留下来的单词,goto和const就是java的保留字。
关键字和保留字都是由小写组成、关键字不要去记,我们学一个记一个。
注意:java无sizeof、goto、const关键字abstract | do | implement | private | this |
---|---|---|---|---|
boolean | double | import | protected | throw |
break | else | instanceof | public | throws |
---|---|---|---|---|
byte | extends | int | return | transient |
case | false | interface | short | true |
---|---|---|---|---|
catch | final | long | static | try |
char | fianlly | native | strictfp | void |
---|---|---|---|---|
class | float | new | super | volatile |
continue | for | null | switch | while | |
---|---|---|---|---|---|
default | if | package | enum | synchronized | assert |
转载于:https://blog.51cto.com/11699699/2090766