Java中关键字和保留字
2021-06-28 本文已影响0人
CodingDGSun
关键字
具有特殊用途的单词
保留字
现在还没有使用这两个单词作为关键字,但可能在未来的Java版本中使用这两个单词作为关键字
关键字:48个
保留字:2个
特殊直接量:3个
关键字:
- abstract
- assert
- boolean
- break
- byte
- case
- catch
- char
- class
- continue
- default
- do
- double
- else
- enum
- extends
- final
- finally
- float
- for
- if
- implements
- import
- instanceof
- int
- interface
- long
- native
- new
- package
- private
- protected
- public
- return
- short
- static
- strictfp
- super
- switch
- synchronized
- this
- throw
- throws
- transient
- try
- void
- volatile
- while
保留字:
- gogo
- const
特殊直接量:
- true
- false
- null