课程名称:Java入门第一季
课程章节:如何使用 Java 中的数组
课程讲师:老齐
课程内容:
声明数组:
数据类型[ ] 数组名;
数据类型 数组名[ ];
栗子:int[] scores; //存储数组,类型为整数
double scores[]; //存储数组,类型为浮点数
String[] scores; //存储数组,类型为字符串
分配空间:
数组名 = new 数据类型[ 数组长度];
scores = new int[5]; //长度为5的整数数组
height = new double[5] //长度为5的浮点型数组
namse = new String[5] //长度为5的字符串数组
连起来:
int scores[]=new int[5];
int scores[]=new int[]{33,33,44,55};//[]里必须为空