C# 数组复制


在 C# 中使用 array.copy 方法将一段数组复制到另一个数组。

我们的原始数组有 10 个元素 −

int [] n = new int[10]; /* n is an array of 10 integers */

我们的新数组(将复制数组 1 中的一段)有 5 个元素 −

int [] m = new int[5]; /* m is an array of 5 integers */

array. copy() 方法允许你添加源数组和目标数组。此外,请包括第一组数组包含的第二组数组部分的大小。

示例

你可以尝试运行以下代码在 C# 中实现数组复制 −

实时演示

using System;
namespace ArrayApplication {
   class MyArray {
      static void Main(string[] args) {
         int [] n = new int[10]; /* n is an array of 10 integers */
         int [] m = new int[5]; /* m is an array of 5 integers */
         for ( int i = 0; i < 10; i++ ) {
            n[i] = i + 100;
         }
         Console.WriteLine("Original Array...");
         foreach (int j in n ) {
            int i = j-100;
            Console.WriteLine("Element[{0}] = {1}", i, j);
         }
         Array.Copy(n, 0, m, 0, 5);
         Console.WriteLine("New Array...");
         foreach (int res in m) {
            Console.WriteLine(res);
         }
         Console.ReadKey();
      }
   }
}

输出

Original Array...
Element[0] = 100
Element[1] = 101
Element[2] = 102
Element[3] = 103
Element[4] = 104
Element[5] = 105
Element[6] = 106
Element[7] = 107
Element[8] = 108
Element[9] = 109
New Array...
100
101
102
103
104

更新于:19-6-2020

5K+ 次浏览

开启你的 职业生涯

完成课程后可获得认证

开始
广告