Java程序员_编程开发学习笔记_网站安全运维教程_渗透技术教程

Java保留字大全

阿贵
1年前发布 /正在检测是否收录...

Java中的保留字(也称为关键字)是那些具有特殊含义的标识符,用于定义程序的结构或数据类型。以下是Java中详细的保留字列表:

数据类型:
boolean
byte
char
double
float
int
long
short
void
流程控制:
if
else
switch
case
default
while
do
for
break
continue
return
访问权限:
private
protected
public
类、接口和继承:
class
interface
extends
implements
super
this
instanceof
错误处理:
try
catch
finally
throw
throws
变量、方法和对象:
new
true
false
null
其他:
static
final
abstract
strictfp
volatile
transient
synchronized
native
assert
enum
package
import
goto (虽然保留,但未被使用)
const (虽然保留,但仅在接口中的字段使用,具有不同的含义)
注意:goto 和 const 是Java中的保留字,但在实际编程中并不常用,且goto没有在任何Java版本中被实现。而const在Java中主要用于接口中的字段,其含义与在其他编程语言(如C或C++)中有所不同。
另外,true、false 和 null 虽然不是关键字,但它们是Java中的字面量,也不能用作标识符。

© 版权声明
THE END
喜欢就支持一下吧
点赞 0 分享 收藏
评论 抢沙发
取消 登录评论
易航博客