Java中关键字和保留字
Posted CodingDGSun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中关键字和保留字相关的知识,希望对你有一定的参考价值。
关键字
具有特殊用途的单词
保留字
现在还没有使用这两个单词作为关键字,但可能在未来的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
以上是关于Java中关键字和保留字的主要内容,如果未能解决你的问题,请参考以下文章