gpt4 book ai didi

c# - 是否有像 yield 的 'opposite' 这样的东西?

转载 作者:太空狗 更新时间:2023-10-30 01:20:35 25 4
gpt4 key购买 nike

我认识到我无法将完整的数据保存在内存中,因此我想在内存中流式传输部分数据并使用它们,然后将它们写回。

Yield 是一个非常有用的关键字,它节省了使用枚举器和保存索引的一大堆,....

但是,当我想通过 yield 移动 IEnumerable 并将它们写回集合/文件时,我是否需要使用枚举器概念,或者是否有类似 yield 的相反概念?我开始关注 RX,但我不清楚它是否解决了我的问题?

    public static IEnumerable<string> ReadFile()
{
string line;

var reader = new System.IO.StreamReader(@"c:\\temp\\test.txt");
while ((line = reader.ReadLine()) != null)
{
yield return line;
}

reader.Close();
}

public static void StreamFile()
{
foreach (string line in ReadFile())
{
WriteFile(line);
}
}

public static void WriteFile(string line)
{
// how to save the state, of observe an collection/stream???
var writer = new System.IO.StreamWriter("c:\\temp\\test.txt");
writer.WriteLine(line);

writer.Close();
}

最佳答案

在您的情况下,您可以传递 IEnumerable<string>直接写入文件:

public static void WriteFile(IEnumerable<string> lines)
{
// how to save the state, of observe an collection/stream???
using(var writer = new System.IO.StreamWriter("c:\\temp\\test.txt"))
{
foreach(var line in lines)
writer.WriteLine(line);
}
}

由于输入是通过 IEnumerable<T> 流式传输的, 数据永远不会保存在内存中。

请注意,在这种情况下,您可以只使用 File.ReadLines 执行读取,因为它已经通过 IEnumerable<string> 将结果流回.与 File.WriteAllLines ,您的代码可以这样完成(不过,您也可以只使用 File.Copy ):

File.WriteAllLines(outputFile, File.ReadLines(inputFile));

关于c# - 是否有像 yield 的 'opposite' 这样的东西?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18646710/

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