C# 中的动态数组是什么?


动态数组是可增长的数组,并且比静态数组有优势。这是因为数组的大小是固定的。

若要在 C# 中动态创建数组,请使用 ArrayList 集合。它表示一个按单独索引的对象的有序集合。它还允许在列表中动态分配内存、添加、搜索和排序项。

以下是一个显示如何在 C# 中动态创建数组的示例 −

示例

 实时演示

using System;
using System.Collections;

namespace Demo {
   class Program {
      static void Main(string[] args) {
         ArrayList al = new ArrayList();

         al.Add(577);
         al.Add(286);

         Console.WriteLine("Count: {0}", al.Count);

         Console.Write("List: ");
         foreach (int i in al) {
            Console.Write(i + " ");
         }

         Console.WriteLine();

         Console.ReadKey();
      }
   }
}

输出

Count: 2
List: 577 286

更新于: 2020 年 6 月 20 日

超过 6K 次浏览

开启你的 职业生涯

完成课程即可获得认证

开始
广告