方法不会从任务委托调用

时间:2018-04-17 09:23:01

标签: c# .net parallel-processing task .net-4.6.2

我尝试使用System.Threading.Tasks.Task类实现并行处理。奇怪的是,任务委托执行在第一次方法调用时停止。我在下面的示例代码中编码以重新创建问题。

using System;
using System.Threading.Tasks;

namespace TestApp
{
    public static class TestClass
    {
        static TestClass()
        {
            var tasks = new Task[Environment.ProcessorCount];
            for (int i = 0; i < Environment.ProcessorCount; i++)
            {
                var task = Task.Run(() =>
                {
                    Console.WriteLine("Start the Task " + i);

                    // Method Foo is not called. 
                    // Stack trace show a managed to native transition.
                    // Why? 
                    Foo(i);
                });
                tasks[i] = task;
            }

            Task.WaitAll(tasks);
            Console.WriteLine("Press eny key to exit");
            Console.ReadKey();
        }

        private static void Foo(int i)
        {
            Console.WriteLine("Foo in the Task " + i);
        }
    }
}

我调用方法TestClass.Bar()来调用TestClass的静态构造函数。 主线程按预期在Task.WaitAll(tasks)调用时等待并行任务。但它永远不会完成,因为任务本身都停留在Foo方法调用上。

其中一个卡住任务的堆栈跟踪:

TestApp.exe!TestApp.TestClass..cctor.AnonymousMethod__0
[Managed to Native Transition]
TestApp.exe!TestApp.TestClass..cctor.AnonymousMethod__0() Line 18
mscorlib.dll!System.Threading.Tasks.Task.InnerInvoke()
mscorlib.dll!System.Threading.Tasks.Task.Execute()
mscorlib.dll!System.Threading.Tasks.Task.ExecutionContextCallback(object obj)
mscorlib.dll!System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx)
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx)
mscorlib.dll!System.Threading.Tasks.Task.ExecuteWithThreadLocal(ref System.Threading.Tasks.Task currentTaskSlot)
mscorlib.dll!System.Threading.Tasks.Task.ExecuteEntry(bool bPreventDoubleExecution)
mscorlib.dll!System.Threading.Tasks.Task.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
mscorlib.dll!System.Threading.ThreadPoolWorkQueue.Dispatch()
mscorlib.dll!System.Threading._ThreadPoolWaitCallback.PerformWaitCallback()

有人可以建议为什么Foo方法不被调用吗?

1 个答案:

答案 0 :(得分:6)

静态构造函数必须只执行一次。当你在你的类上调用任何方法时 - 必须执行静态构造函数(如果还没有),除非它现在已经执行了。在这种情况下,第二次调用应该等到静态构造函数完成。

您在静态构造函数中启动多个任务,然后使用Task.WaitAll阻止它们完成。

但是,每个任务也调用同一个类的静态方法(Foo)。每个这样的调用必须等待静态构造函数完成(因为它现在正在执行)。但它永远不会发生,因为静态构造函数被等待任务完成阻塞,任务被阻塞等待静态构造函数完成,所以你有一个经典的死锁。