一维数组
String []str=new String[100];
str.length是final变量
数值型基本类型元素为0,布尔型元素为false,引用为null
int a[],b,c;a=new int[10];a[0]=1;
a为数组变量,b和c都是int型变量