gpt4 book ai didi

c# - C#中多个线程调用同一个方法

转载 作者:行者123 更新时间:2023-11-30 13:19:40 25 4
gpt4 key购买 nike

我有以下 C# 代码片段,我在其中模拟了我的问题。在这个程序中,我有一个调用 ReadRooms 方法的服务函数。现在我在不同的线程上调用服务方法。我原以为 ServiceCall 和 ReadRooms 方法会同样触发,但我得到的结果低于不正确的结果。

enter image description here

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
class Program
{
public static void ReadRooms(int i)
{
Console.WriteLine("Reading Room::" + i);
Thread.Sleep(2000);
}
public static void CallService(int i)
{
Console.WriteLine("ServiceCall::" + i);
ReadRooms(i);

}
static void Main(string[] args)
{
Thread[] ts = new Thread[4];
for (int i = 0; i < 4; i++)
{
ts[i] = new Thread(() =>
{
int temp = i;
CallService(temp);


});
ts[i].Start();
}
for (int i = 0; i < 4; i++)
{
ts[i].Join();
}
Console.WriteLine("done");
Console.Read();

}
}
}

最佳答案

您仍在“捕获循环变量”。您正在创建 temp 但为时已晚,此时 i 已被捕获。

试试这个:

for (int i = 0; i < 4; i++)
{
int temp = i; // outside the lambda
ts[i] = new Thread(() =>
{
//int temp = i; // not here
CallService(temp);
});
ts[i].Start();
}

关于c# - C#中多个线程调用同一个方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18409547/

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