2

假设我正在对一堆不同的函数进行基准测试,我只想调用一个函数来运行函数 foo n 次。

当所有函数都具有相同的返回类型时,您可以这样做

static void benchmark(Func<ReturnType> function, int iterations)
{
    Console.WriteLine("Running {0} {1} times.", function.Method.Name, iterations);
    Stopwatch stopwatch = new Stopwatch();
    stopwatch.Start();
    for (int i = 0; i < iterations; ++i)
    {
        function();
    }
    stopwatch.Stop();
    Console.WriteLine("Took {0} to run {1} {2} times.", stopwatch.Elapsed, function.Method.Name, iterations);
}

但是如果我正在测试的函数有不同的返回类型呢?我可以接受具有泛型类型的函数吗?我尝试使用Func <T>但它不起作用。

4

3 回答 3

6

当然,您可以使其通用:

static void Benchmark<T>(Func<T> function, int iterations)

您可能还希望将其重载为 accept Action, forvoid方法。

于 2013-10-17T20:09:28.713 回答
1
static void benchmarkFoo<T>(Func<T> foo, int n)
                         ^       ^

注意上面提到的地方的通用参数。足够了。

于 2013-10-17T20:12:35.153 回答
1
 static void BenchmarkFoo<T>(Func<T> foo, int n) where T :new() <-- condition on T

根据您要对该返回值执行的操作,您可能需要在泛型上设置条件。

于 2013-10-17T20:22:34.263 回答