迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

在 C# 中初始化一个空数组

作者:迹忆客 最近更新:2024/01/16 浏览次数:

本教程将演示如何初始化一个已知大小的数组或一个空数组。

数组表示具有固定长度的值的集合。在初始化时设置其大小后,你不能再添加或减少数组。尽管你不能再更改数组的大小,但你仍然可以更改数组中各项的值。数组在组织大量数据时很有用。

要初始化数组,你可以使用以下任一示例。

// An array with a size of 5, all values are set to the default value. In this case, a 0 because its
// an integer
int[] array = new int[5];

// An array with all values set. When initializing the array in this way, there is no need to
// specify the size
int[] array_2 = new int[] { 10, 9, 8, 7, 6 };

由于数组的长度是固定的,如果你不知道要存储的集合大小,你可能需要考虑其他选项,例如 List<T>,它允许你根据需要添加任意数量的元素。添加完所有元素后,你可以使用 ToArray() 函数将列表转换为数组。

List<int> list = new List<int>();
int[] array = list.ToArray();

但是,如果你确实需要一个空数组,则可以将数组的大小设置为 0。

int[] array = new int[0];

例子:

using System;

namespace StringArray_Example {
  class Program {
    static void Main(string[] args) {
      // Initialize an empty array
      int[] empty_array = new int[0];
      // Join the values of the array to a single string separated by a comma
      string item_str = string.Join(", ", empty_array);

      // Print the length of the array
      Console.WriteLine("The array has a length of " + empty_array.Length.ToString());
      // Print the values of the array
      Console.WriteLine("Items: " + item_str);

      try {
        // Attempt to add a new item to the empty array
        empty_array[0] = 1;
      } catch (Exception ex) {
        Console.WriteLine("You cannot add new items to an array!");
        Console.WriteLine("Exception: " + ex.ToString());
      }

      Console.ReadLine();
    }
  }
}

在上面的示例中,我们通过将其大小设置为 0 来声明一个空整数数组。在将其值和长度打印到控制台以证明它确实为空之后,我们尝试向该数组添加一个新值。这不可避免地失败了,因为你不允许修改数组的大小,从而触发 Index was outside the bounds of the array 错误。

输出:

The array has a length of 0
Items:
You cannot add new items to an array!
Exception: System.IndexOutOfRangeException: Index was outside the bounds of the array.

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

C# 获取当前文件夹路径

发布时间:2024/01/18 浏览次数:172 分类:编程语言

本文方法介绍了在 C# 中获取当前文件夹路径的不同方法。它介绍了诸如 GetCurrentDirectory(),GetDirectoryName()和 Environment.CurrentDirectory 之类的方法。

如何在 C# 中创建文件夹

发布时间:2024/01/18 浏览次数:61 分类:编程语言

本文介绍了如何在 C# 中创建一个不存在的新文件夹。它包括 CreateDirectory()方法。使用 CreateDirectory() 方法在 C# 中创建一个文件夹

C# 中的计时器

发布时间:2024/01/18 浏览次数:69 分类:编程语言

Timer 类可用于在 C# 中创建计时器。在 C# 中使用 Timer 类创建一个计时器 Timer 类用于在 C# 中设定的时间间隔后创建事件。

C# 中的倒数计时器

发布时间:2024/01/18 浏览次数:102 分类:编程语言

Timer 类可用于在 C# 中创建倒数计时器。使用 C# 中的 Timer 类倒数计时器 Timer 类用于在 C# 中的单独线程内执行函数。

在 C# 中重置计时器

发布时间:2024/01/18 浏览次数:106 分类:编程语言

本文将讨论如何使用 C# 编程语言重置计时器。C# 中的 System.Timer 类 C# 中的这个 System.Timer 类提供了一种机制,可以在经过一定时间后执行一段代码,并且这段代码可能会被执行多次。

C# 中的 float、Double 和 Decimal

发布时间:2024/01/18 浏览次数:128 分类:编程语言

C# 中的浮点,双精度和十进制数据类型之间的差异如下所述。C# 中的浮点数数据类型 浮点数数据类型在 C# 中存储浮点值。

C# 随机布尔值

发布时间:2024/01/18 浏览次数:199 分类:编程语言

本教程教授如何在 C# 中生成随机布尔值。使用 C# 类 Random 中的 Next() 方法 C# 中的 Random 类为我们提供了一个随机库。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便