int a[]={1,2,3,2}; int b[]={4,2,90,8,98}; int[] d3 = new int[a.length + b.length]; System.arraycopy(a, 0, d3, 0, a.length); System.arraycopy(b, 0, d3, a.length, b.length); System.arraycopy的参数意义:(src, srcPos, dest, destPos, length)--(源数组,源数组开始位置,目标数组,…