溫馨提示×

c# for循環(huán)能處理集合嗎

c#
小樊
82
2024-11-15 20:50:11
欄目: 編程語言

是的,C# 的 for 循環(huán)可以處理集合(Collection)。在 C# 中,集合通常是一個(gè)實(shí)現(xiàn)了 IEnumerableIEnumerator 接口的類,例如 List<T>、Dictionary<TKey, TValue>HashSet<T> 等。

以下是一些使用 for 循環(huán)遍歷集合的示例:

  1. 遍歷 List<int>
List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };

for (int i = 0; i < numbers.Count; i++)
{
    Console.WriteLine(numbers[i]);
}
  1. 遍歷 Dictionary<string, int>
Dictionary<string, int> fruits = new Dictionary<string, int>
{
    { "apple", 5 },
    { "banana", 8 },
    { "orange", 3 }
};

foreach (KeyValuePair<string, int> fruit in fruits)
{
    Console.WriteLine($"{fruit.Key}: {fruit.Value}");
}

注意:雖然這里使用了 foreach 循環(huán),但它實(shí)際上是遍歷集合的一種簡便方法。實(shí)際上,foreach 循環(huán)底層也是使用 for 循環(huán)來遍歷集合。因此,你可以根據(jù)需要選擇使用 for 循環(huán)或 foreach 循環(huán)來遍歷集合。

0