public class MethondDemo10 {public static void main(String[] args) {//定义一个需求copyOfRange(int[]arr,int from,int to)//将数组arr中从索引from(包含from)开始//到索引to结束(不包含to)的元素复制到新数组当中//将新数组返回c0-p//定义原始数组,静态数组int[] arr={1,2,3,4,5,6,7,8,9};//调用方法,拷贝数据,把newarr的数据赋值给copyint []copy= copyOfRange(arr,3,9);//因为数组是有长度的,copyOfRange的长度是由copy里面的数组里定义的.for (int i = 0; i <copy.length; i++){//输出打印的时候,可以不要ln, 这样就不会换行输出,但是可以加一个空格System.out.print(copy[i]+" ");}}//定义了一个方法copyOfRange,写了三个形参public static int[] copyOfRange(int[]arr,int from,int to) {//定义一个变量int index = 0;//定义一个新的数组为动态数组,数组的元素为to-fromint[] newarr = new int[to - from];//for循环.i=from开始,在到to结束,取不到to这个值,然后一直i++.for (int i = from; i < to; i++) {//把arr里面的数赋值给新的数组indexnewarr[index] = arr[i];//在进行index++index++;}//最后在把值返回给main方法return newarr;} }