gpt4 book ai didi

c# - For 循环导致 Task.Run 或 Task.Start 溢出

转载 作者:可可西里 更新时间:2023-11-01 09:05:05 33 4
gpt4 key购买 nike

遇到问题,希望有人能帮我解决。

我尝试在循环中启动 4 个任务,但我收到 ArgumentOutOfRangeException:

 for (int i = 0; i < 4; i++)
{
//start task with current connection
tasks[i] = Task<byte[]>.Run(() => GetData(i, plcPool[i]));
}

循环因为 i = 4 而溢出

如果我在没有循环的情况下启动任务,它们会毫无问题地运行:

            tasks[0] = Task<byte[]>.Run(() => GetData(0, plcPool[0]));
tasks[1] = Task<byte[]>.Run(() => GetData(1, plcPool[1]));
tasks[2] = Task<byte[]>.Run(() => GetData(2, plcPool[2]));
tasks[3] = Task<byte[]>.Run(() => GetData(3, plcPool[3]));

不知道为什么?任务 通过套接字连接从西门子 PLC 获取数据。 PLC 最多支持 32 个连接。每个连接我收到 200 字节。

 private byte[] GetData(int id, PLC plc)
{
switch (id)
{
case 0:
return plc.ReadBytes(DataType.DataBlock, 50, 0, 200);
case 1:
return plc.ReadBytes(DataType.DataBlock, 50, 200, 200);
case 2:
return plc.ReadBytes(DataType.DataBlock, 50, 500, 200);
case 3:
return plc.ReadBytes(DataType.DataBlock, 50, 700, 200);
case 4:
return plc.ReadBytes(DataType.DataBlock, 50, 900, 117);
default:
return null;
}
}

有什么想法吗?

问候山姆

最佳答案

这可能是由 closure problem 引起的.

试试这个:

 for (int i = 0; i < 4; i++)
{
//start task with current connection
int index = i;
tasks[index] = Task<byte[]>.Run(() => GetData(index, plcPool[index]));
}

可能发生的情况是,当最后一个线程开始运行时,循环已经将 i 递增到 4,这就是传递给 GetData() 的值.将 i 的值捕获到一个单独的变量 index 中并使用它应该可以解决该问题。

举个例子,如果你试试这个代码:

public static void Main()
{
Console.WriteLine("Starting.");

for (int i = 0; i < 4; ++i)
Task.Run(() => Console.WriteLine(i));

Console.WriteLine("Finished. Press <ENTER> to exit.");
Console.ReadLine();
}

它通常会给你这样的输出:

Starting.
Finished. Press <ENTER> to exit.
4
4
4
4

将该代码更改为:

public static void Main()
{
Console.WriteLine("Starting.");

for (int i = 0; i < 4; ++i)
{
int j = i;
Task.Run(() => Console.WriteLine(j));
}

Console.WriteLine("Finished. Press <ENTER> to exit.");
Console.ReadLine();
}

你会得到类似的东西

Starting.
Finished. Press <ENTER> to exit.
0
1
3
2

请注意它仍然没有必要按顺序排列!您将看到打印出所有正确的值,但顺序不确定。多线程很棘手!

关于c# - For 循环导致 Task.Run 或 Task.Start 溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33275831/

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