摘要:
1:数组的基本操作 获取元素:元素类型 变量 = 数组名[index]; 设置元素:数组名[index] = 值; 遍历数组元素: for(int index = 0;index <= nums.length-1;index++){ System.out.println(nums[index]); 阅读全文
摘要:
基本数据类型:byte,short,int,long,double,float,char,boolean 引用数据类型:类,接口,数组 数组的定义: 方式一:数组元素的类型[] 数组名;比如int[] ages;推荐使用,可以把int[]看成是一种数据类型 方式二:数组元素的类型 数组名[];比如i 阅读全文