A,float[]=new float[3]; B, float f2[]=new float[]; C, float[] f1=new float[3]; D, boolean[] b={"true","false","true"}; E, double f4[]={1,3,5}; F, int f5[]=new int[3]{2,3,4}; G, float f4[]={1.2,3.0,5.4};
答案如下:
A,float[]=new float[3]; //错误,没有定义数组名 B, float f2[]=new float[];//错误,没有定义数组的长度 C, float[] f1=new float[3];//正确 D, boolean[] b={"true","false","true"};//错误 元素类型不对,应是boolean类型的 boolean[] b={true,false ,true} E, double f4[]={1,3,5}; //正确 F, int f5[]=new int[3]{2,3,4}; //错误 静态初始化不能指定长度 G, float f4[]={1.2,3.0,5.4};//错误 float数组不能定义double元素 |