说我正在对一堆不同的函数进行基准测试,我只想调用一个函数来运行函数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>
但它不起作用。
答案 0 :(得分:6)
你可以把它变成一般的,当然:
static void Benchmark<T>(Func<T> function, int iterations)
对于Action
方法,您可能还想重载它以接受void
。
答案 1 :(得分:1)
static void benchmarkFoo<T>(Func<T> foo, int n)
^ ^
注意上述地方的通用参数。这就够了。
答案 2 :(得分:1)
static void BenchmarkFoo<T>(Func<T> foo, int n) where T :new() <-- condition on T
根据您对该返回值的处理方式,您可能需要在通用上添加条件。