数组的长度是不可变的,一旦分配好空间,是多长,就多长,不能增加也不能减少
步骤1:复制数组
步骤2:练习-合并数组
步骤3:答案-合并数组
步骤 1 : 复制数组
把一个数组的值,复制到另一个数组中
System.arraycopy(src, srcPos, dest, destPos, length) |
src: 源数组
srcPos: 从源数组复制数据的起始位置
dest: 目标数组
destPos: 复制到目标数组的起始位置
length: 复制的长度
public class HelloWorld { public static void main(String[] args) { int a [] = new int []{ 18 , 62 , 68 , 82 , 65 , 9 }; int b[] = new int [ 3 ]; //分配了长度是3的空间,但是没有赋值 //通过数组赋值把,a数组的前3位赋值到b数组 //方法一: for循环 for ( int i = 0 ; i < b.length; i++) { b[i] = a[i]; } //方法二: System.arraycopy(src, srcPos, dest, destPos, length) //src: 源数组 //srcPos: 从源数组复制数据的起始位置 //dest: 目标数组 //destPos: 复制到目标数组的启始位置 //length: 复制的长度 System.arraycopy(a, 0 , b, 0 , 3 ); //把内容打印出来 for ( int i = 0 ; i < b.length; i++) { System.out.print(b[i] + " " ); } } } |
更多内容,点击了解: https://how2j.cn/k/array/array-copyarray/284.html