gpt4 book ai didi

c# - C# 中的内部迭代器

转载 作者:行者123 更新时间:2023-12-02 08:08:45 26 4
gpt4 key购买 nike

如何在 C# 中实现内部迭代器?

最佳答案

我找到了this definition c2 wiki 上的“内部迭代器”:

An Internal Iterator is a HigherOrderFunction that takes a collection and a function and applies the function to every element of the collection

假设这就是您想要的,以下是在 C# 中实现的方法:

static void ForEach<T>(IEnumerable<T> enumerable, Action<T> action)
{
foreach (T item in enumerable)
{
action(item);
}
}

使用示例:

Action<int> printer = x => Console.WriteLine(x);
var numbers = new int[] { 1, 2, 3};
ForEach(numbers, printer);

关于c# - C# 中的内部迭代器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1885998/

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