Java中数组的使用 1.普通数组变量的定义: //数组 //1.数组是Java中很重要的一部分,今天对数组进行了大致的了解,Java中的数组和C中数组还是有一定的区别的 //以下是总结的几种方法 public class FirstP1 { public static void main(String[] args) { //第一种创建方法: int[] nums = new int[]{1,5,6,9,7}; //注意:new int[] 括号中不能有数字: //第二种创建方法: int[]…