摘要: #数组 数组:用来存放一组相同类型的数据类型 >引用类型 特点1:有长度->length 特点2:有下标,且下标从0开始 ###数组的定义方式 int[] arr={值1,值2,值3...} int[] arr=new int[值] int[] arr=new int[]{值1,值2,值3...} 阅读全文
posted @ 2022-09-14 19:13 梦梦想睡觉 阅读(22) 评论(0) 推荐(0) 编辑