JDK1.8中的保留关键字
时间: 2023-03-21 10:01:43 浏览: 108
Javascript关键字及保留字
4星 · 用户满意度95%
JDK 1.8中的保留关键字如下:
- abstract
- assert
- boolean
- break
- byte
- case
- catch
- char
- class
- const
- continue
- default
- do
- double
- else
- enum
- extends
- false
- final
- finally
- float
- for
- goto
- if
- implements
- import
- instanceof
- int
- interface
- long
- native
- new
- null
- package
- private
- protected
- public
- return
- short
- static
- strictfp
- super
- switch
- synchronized
- this
- throw
- throws
- transient
- true
- try
- void
- volatile
- while
这些关键字都有特殊的含义和用途,不能作为标识符(如变量名、类名、方法名等)使用。
阅读全文