gpt4 book ai didi

C# - 为什么在实现 IEnumerable 接口(interface)时实现两个版本的 Current?

转载 作者:太空狗 更新时间:2023-10-29 22:11:15 25 4
gpt4 key购买 nike

我假设以下示例提供了我们在实现 IEnumerable 接口(interface)时应该遵循的最佳实践。

https://learn.microsoft.com/en-us/dotnet/api/system.collections.ienumerator.movenext

问题是:

  1. 为什么我们要提供两个版本的Current方法?
  2. 何时使用版本 ONE(对象 IEnumerator.Current)?
  3. 什么时候使用版本二(public Person Current)?
  4. 如何在 foreach 语句中使用 PeopleEnum。//更新
public class PeopleEnum : IEnumerator
{
public Person[] _people;

// Enumerators are positioned before the first element
// until the first MoveNext() call.
int position = -1;

public PeopleEnum(Person[] list)
{
_people = list;
}

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

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

// explicit interface implementation
object IEnumerator.Current /// **version ONE**
{
get
{
return Current;
}
}

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

最佳答案

IEnumerator.Current 是一个显式接口(interface)实现。

只有将迭代器转换为 IEnumerator(框架对 foreach 执行的操作),您才能使用它。在其他情况下,将使用第二个版本。

您会看到它返回 object 并且实际上使用另一个返回 Person 的实现。

第二个实现本身不是接口(interface)所必需的,但为了方便和为了返回预期类型而不是 object 而存在。

关于C# - 为什么在实现 IEnumerable 接口(interface)时实现两个版本的 Current?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5916909/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com