JAVA中的关键字都是小写的.共有49个关键字,2个未使用的保留字:const goto;
数据类型:
boolean byte int short long float double char class interface
流程控制:
if else do while for switch case default break continue return try catch finally
修饰符:
public protected private final void static strictfp abstract transient
synchronized volatile native
动作:
package import throw throws extends implements this Super instanceof new
保留字:
true false null
成员变量的默认值(new 一个对象时产生):
对象引用: null
byte,short,int,long 0
float,double 0.0
boolean false
char '/u0000'
@@局部变量在使用时,必须赋初值,否则编译器会抱怨.
@@数组自身是一个对象,具有length变量.String具有length方法.
@@多维数组只是数组的数组,维数可以有不同的长度.
@@对象数组能够保存通过该数组声明类型IS-A(或者instanceof)测试的任何对象.
@@当一个数组被实例化时,该数组内的对象没有被自动实例化,但所有引用都得到默认值null.
@@当原始数组实例化时,所有元素得到它们的默认值.