本文介绍了使用阵列复制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个Java程序,其中一个包含5个Element的int数据类型的数组,例如10、15、20、25、30,并希望将所有相同的数据复制到另一个数组中而不放置相同的值.任何帮助,请...

i have created a java program in which a array of int data type containing 5 Element like 10,15,20,25,30 and want to copying all the same data into Another array without putting same value.
any help please...

推荐答案

int[] arr1 = { 10, 15, 20, 25, 30 };
          int[] arr2 = (int[])arr1.Clone();  // Using Clone
          for (int i = 0; i < arr2.Length; i++)
          {
              System.out.println(arr2[i].ToString()); // Print arr2 value
          }
          Console.ReadLine();



当您编译并解释该程序时,您会注意到arr2将显示arr1的所有元素



when you compile and interprets this program you will notice that arr2 will display all element of arr1



这篇关于使用阵列复制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 23:37