美文网首页
Java的53个关键字大全

Java的53个关键字大全

作者: ddxuzengbin | 来源:发表于2018-09-14 18:18 被阅读0次
保留字 const goto
用于定义数据类型的关键字
class interface byte
short int long
float double char
boolean void enum
用于定义数据类型值的关键字
true false null
用于定义流程控制的关键字
if else switch
case default while
do for break
continue return
用于定义访问权限修饰符的关键字
private protected public
用于定义类、函数、变量修饰符的关键字
abstract final static
synchronized
用于定义类与类之间关系的关键字
extends implements
用于定义建立实例、判断实例的关键字
new this super
instanceof
用于异常处理的关键字
try catch finally
throw throws
用于包的关键字
package import
其他修饰符关键字
native strictfp transient
volatile assert

相关文章

网友评论

      本文标题:Java的53个关键字大全

      本文链接:https://www.haomeiwen.com/subject/kdfagftx.html