异步多任务线程问题

时间:2014-05-19 03:57:34

标签: c# async-await

我试图异步执行多个(n)任务,这些任务聚合为单个求和结果。目前我有以下内容:

public class Foo
{
    public async void DoWork()
    {
        var stopwatch = Stopwatch.StartNew();
        List<Task> tasks = new List<Task>();

        var bar = new Bar();

        for (int i = 0; i < 20; i++)
        {
            var task = Task.Run(() =>
            {
                Thread.Sleep(500);

                bar.Count1++;
                bar.Count2++;
            });

            tasks.Add(task);
        }

        await Task.WhenAll(tasks.ToArray());

        Console.WriteLine("All done, Bar Count1: " + bar.Count1 + ", Count2: " + bar.Count2);
        stopwatch.Stop();
        Console.WriteLine("Time taken " + stopwatch.ElapsedMilliseconds + " ms");
    }
}

public class Bar
{
    public int Count1 { get; set; }
    public int Count2 { get; set; }
}

我希望bar.Count1bar.Count2在执行结束时的值为20,但是,每次运行程序时,我都会得到不同的值(大多数是时间&lt; 20)。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:4)

这里没有关闭问题。 ++ operator is not thread safe。所以你需要锁定它。

lock(bar)
{    
    bar.Count1++;
    bar.Count2++;    
}

那应该可以解决问题。