C#数组

数组是一种数据结构,它包含若干相同类型的变量。数组是使用类型声明的:

type[] arrayName;

下面的示例创建一维、多维和交错数组:

 class TestArraysClass
 {
     static void Main()
     {
         // Declare a single-dimensional array
         ];

         // Declare and set array element values
         , , , ,  };

         // Alternative syntax
         , , , , ,  };

         // Declare a two dimensional array
         , ];

         // Declare and set array element values
         , ,  }, { , ,  } };

         // Declare a jagged array
         ][];

         // Set the values of the first array in the jagged array structure
         jaggedArray[] = ] { , , ,  };
     }
 }

数组概述

数组具有以下属性:

  • 数组可以是一维多维交错的。

  • 数值数组元素的默认值设置为零,而引用元素的默认值设置为 null。

  • 交错数组是数组的数组,因此,它的元素是引用类型,初始化为 null

  • 数组的索引从零开始:具有 n 个元素的数组的索引是从 0 到 n-1

  • 数组元素可以是任何类型,包括数组类型。

  • 数组类型是从抽象基类型 Array 派生的引用类型。由于此类型实现了 IEnumerable 和 IEnumerable,因此可以对 C# 中的所有数组使用 foreach 迭代。

上一篇:mstsc 远程序桌面登录的 c#开发


下一篇:控制台telnet连接后无法关闭