手写数组复制 作为新手还是要写一些基本的方法实现的 此复制功能为Arrays.copy功能复制数组 public class CopyOf { public static void main(String[] args) { int[] arrays1 = { 1, 2, 3, 0, 0}; int[] arrays2 = { 2, 2, 2, 3}; //获取到第一个数组的长度 int len1 = arrays1.length; //初始化count i...