溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用C# 9.0中的GetEnumerator()特性怎么實現(xiàn)foreach循環(huán)

發(fā)布時間:2020-11-24 14:25:54 來源:億速云 閱讀:403 作者:Leah 欄目:開發(fā)技術

這期內容當中小編將會給大家?guī)碛嘘P使用C# 9.0中的GetEnumerator()特性怎么實現(xiàn)foreach循環(huán),文章內容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

1.介紹

我們知道,我們要使一個類型支持foreach循環(huán),就需要這個類型滿足下面條件之一:

該類型實例如果實現(xiàn)了下列接口中的其中之一:

  • System.Collections.IEnumerable
  • System.Collections.Generic.IEnumerable<T>
  • System.Collections.Generic.IAsyncEnumerable<T

該類型中有公開的無參GetEnumerator()方法,且其返回值類型必須是類,結構或者接口,同時返回值類型具有公共 Current 屬性和公共無參數(shù)且返回類型為 Boolean的MoveNext 方法。

上面的第一個條件,歸根結底還是第二個條件的要求,因為這幾個接口,里面要求實現(xiàn)的還是GetEnumerator方法,同時,接口中GetEnumerator的返回值類型IEnumerator接口中要實現(xiàn)的成員和第二條中返回值類型的成員相同。

C#9.0之前,是不支持采取擴展方法的方式給類型注入GetEnumerator方法,以支持foreach循環(huán)的。從C#9.0之后,這種情況得到了支持。

2. 應用與示例

在這里,我們定義一個People類,它可以枚舉其所有組員Person,并且在其中定義了MoveNext方法和Current屬性。同時,我們也通過擴展方法給People注入了GetEnumerator方法。這樣,我們就可以使用foreach來枚舉People對象了。

首先,我們來定義一個Person記錄:

public record Person(string FirstName, string LastName);

下來,我們來創(chuàng)建People類型,用來描述多個Person對象,并提供GetEnumerator返回值類型中所需的Current屬性和MoveNext方法。在此,我們沒有實現(xiàn)任何接口:

public class People:IDisposable//: IEnumerator<Person>
{
  int position = -1;

  private Person[] _people { get; init; }
  public People(Person[] people)
  {
    _people = people;
  }

  public bool MoveNext()
  {
    position++;
    return (position < _people.Length);
  }

  public Person Current
  {
    get
    {
      try
      {
        return _people[position];
      }
      catch (IndexOutOfRangeException)
      {
        throw new InvalidOperationException();
      }
    }
  }

  public void Reset()
  {
    position = -1;
  }

  public void Dispose()
  {
    Reset();
  }
}

需要注意的是People中,由于沒有通過使用前面的接口來實現(xiàn)支持foreach功能,這樣就存在一個問題,就是第一次foreach循環(huán)完成后,狀態(tài)還沒有恢復到初始狀態(tài),第二次使用foreach進行枚舉就沒有可用項。因此我們添加了Reset方法用于手工恢復回初始狀態(tài),如果想讓foreach能自動恢復狀態(tài),就讓People實現(xiàn)接口IDisposable,并在其實現(xiàn)中,調用Reset方法。

然后,我們定義擴展方法,給People注入GetEnumerator方法

static class PeopleExtensions
{
  //public static IEnumerator<T> GetEnumerator<T>(this IEnumerator<T> people) => people;
  public static People GetEnumerator(this People people) => people;
}

最后,只要引用了擴展方法所在的命名空間,foreach循環(huán)就可以使用了。

var PersonList = new Person[3]
{
  new ("John", "Smith"),
  new ("Jim", "Johnson"),
  new ("Sue", "Rabon"),
};

var people = new People(PersonList);
foreach (var person in people)
{
  Console.WriteLine(person);
}

到這里,我們就完成了利用擴展方法來實現(xiàn)foreach循環(huán)的示例,為了方便拷貝測試,我們所有的代碼放在一起就如下所示:

var PersonList = new Person[3]
{
  new ("John", "Smith"),
  new ("Jim", "Johnson"),
  new ("Sue", "Rabon"),
};

var people = new People(PersonList);
foreach (var person in people)
{
  Console.WriteLine(person);
}

public record Person(string FirstName, string LastName);

public class People:IDisposable//: IEnumerator<Person>
{
  int position = -1;

  private Person[] _people { get; init; }
  public People(Person[] people)
  {
    _people = people;
  }

  public bool MoveNext()
  {
    position++;
    return (position < _people.Length);
  }

  public Person Current
  {
    get
    {
      try
      {
        return _people[position];
      }
      catch (IndexOutOfRangeException)
      {
        throw new InvalidOperationException();
      }
    }
  }

  public void Reset()
  {
    position = -1;
  }

  public void Dispose()
  {
    Reset();
  }
}

static class PeopleExtensions
{
  //public static IEnumerator<T> GetEnumerator<T>(this IEnumerator<T> people) => people;
  public static People GetEnumerator(this People people) => people;
}

上述就是小編為大家分享的使用C# 9.0中的GetEnumerator()特性怎么實現(xiàn)foreach循環(huán)了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI