为什么在使用Task

时间:2015-05-28 11:32:34

标签: c# task-parallel-library

此代码取自其他网站:

using System;
using System.Threading.Tasks;
public class Program {

    private static Int32 Sum(Int32 n)
    {
        Int32 sum = 0;
        for (; n > 0; n--)
        checked { sum += n; } 
        return sum;
    }

    public static void Main() {
        Task<int32> t = new Task<int32>(n => Sum((Int32)n), 1000);
        t.Start();
        t.Wait(); 

        // Get the result (the Result property internally calls Wait) 
        Console.WriteLine("The sum is: " + t.Result);   // An Int32 value
    }
}

我不明白使用私有静态方法的目的,而不是任何其他正常的公共方法。

由于

2 个答案:

答案 0 :(得分:5)

该方法是静态的,因为它是从静态上下文中使用的,因此它不能是非静态的。

该方法可能是私有的,因为没有理由将其公开。

答案 1 :(得分:2)

这是因为您的Main方法是static并且您不能使用static方法调用非静态方法而不使用该类的make对象,因为使用object调用非静态方法。

如果使Sum方法非静态,则必须在Program类

的对象上调用它
private Int32 Sum(Int32 n)
{
      //your code
}

呼叫将更改为

Task<Int32> t = new Task<Int32>(n => new Program().Sum((Int32)n), 1000);