6.关键字

130 阅读1分钟

6. 关键字

​ java中有一些字符串是预留的,称之为关键字。在IDE关键字往往会以特殊方式高亮显示,标识出来。

​ java的关键字都是小写英文字母。

​ 下表是关键词列表:

abstractassertbooleanbreak
bytecasecatchchar
classconstcontinuedefault
dodoubleelseenum
extendsfinalfinallyfloat
forgotoifimplements
importinstanceofintinterface
longnativenewpackage
privateprotectedpublicreturn
shortstaticstrictfpsuper
switchsynchronizedthisthrow
throwstransienttryvoid
volatilewhile
nulltruefalse

​ java保留字:true,false,null

​ goto和const 目前暂未使用,但也被作为java关键字保留。