数组

声明数组    int[]age; int ages[];

                  age=new int[27]  //命名27个int空间;

double[]age=new double[27]   //重1开始

string []student copy =new string [student .lenght]  //数组的复制

system.arraycopy(arg0.arg1,arg2,arg3,arg4)//ag0旧的数组,arg2新的数组,arg3copy新的数组,arg4数组的长度,

原文地址:https://www.cnblogs.com/chenxi2016/p/5393448.html