5

我有这段代码,它接受一个没有参数的函数,并返回它的运行时。

public static Stopwatch With_StopWatch(Action action)
{
    var stopwatch = Stopwatch.StartNew();
    action();
    stopwatch.Stop();
    return stopwatch;
}

我想将其转换为带参数的非 void 函数。我听说过 Func<> 委托,但我不知道如何使用它。我需要这样的东西(非常伪):

   public T measureThis(ref Stopwatch sw, TheFunctionToMeasure(parameterA,parameterB))
   {
       sw.Start(); // start stopwatch
       T returnVal = TheFunctionToMeasure(A,B); // call the func with the parameters
       stopwatch.Stop(); // stop sw
       return returnVal; // return my func's return val
   }

所以我必须得到传递函数的返回值,最后得到秒表。 任何帮助是极大的赞赏!

4

1 回答 1

9

您的原始代码仍然可以工作。人们如何称呼它是当你有参数时会发生什么变化:

With_Stopwatch(MethodWithoutParameter);
With_Stopwatch(() => MethodWithParameters(param1, param2));

您还可以使用第二种语法调用带有参数的方法:

With_Stopwatch(() => MethodWithoutParameter());
With_Stopwatch(() => MethodWithParameters(param1, param2));

更新:如果你想要返回值,你可以改变你的measureThis函数来Func<T>代替一个动作:

public T measureThis<T>(Stopwatch sw, Func<T> funcToMeasure)
{
    sw.Start();
    T returnVal = funcToMeasure();
    sw.Stop();
    return returnVal;
}

Stopwatch sw = new Stopwatch();
int result = measureThis(sw, () => FunctionWithoutParameters());
Console.WriteLine("Elapsed: {0}, result: {1}", sw.Elapsed, result);
double result2 = meashreThis(sw, () => FuncWithParams(11, 22));
Console.WriteLine("Elapsed: {0}, result: {1}", sw.Elapsed, result);
于 2012-05-18T00:29:51.077 回答