Java中的关键字和保留字有什么区别?

关键词

Java中的关键字向编译器传达了特殊的含义,因此,这些关键字不能用作标识符。Java提供了一组50个关键字。

abstractcontinuefornewswitch
assertdefaultgotopackagesynchronized
booleandoifprivatethis
breakdoubleimplementsprotectedthrow
byteelseimportpublicthrows
caseenuminstanceofreturntransient
catchextendsintshorttry
charfinallongstrictfpvolatile
constfloatnativesuperwhile

保留字

在上述关键字列表中,关键字goto和const当前未使用。它们是保留字(供将来使用)。

以上是 Java中的关键字和保留字有什么区别? 的全部内容, 来源链接: utcz.com/z/359671.html

回到顶部