您的位置:首页 > 编程语言 > Java开发

Java Keywords or Reserved Words (52)for jdk1.4

2009-04-20 20:43 531 查看

Java Keywords or Reserved Words (52)for jdk1.4

abstractdoifpackagesynchronized
booleandoubleimplementsprivatethis
breakelseimportprotectedthrow
byteextendsinstanceofpublicthrows
casefalseintreturntransient
catchfinalinterfaceshorttrue
charfinallylongstatictry
classfloatnativestrictfpvoid
constfornewsupervolatile
continuegotonullswitchwhile
defaultassert
Keywords for data types are:

boolean byte  char  int  long  short  float  double

Keywords for access control are:

private  protected  public

Keywords for modifiers are:

abstract  final  native  private  protected  publicstatic   transient  synchronized  volatile  strictfp


See Modifier

Keywords for catch-exception are:

try  catch  finally  throw

Keywords for loops or decision-makers are:

break  case  continue  default  do  while  for
switch  if  else

Keywords for class functions are:

class  extends  implements  import  instanceof
new  package  return  interface
this  throws  void    super

Keywords for assigned values are:

true  false  null

Outdated keywords are:

const  goto
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐