以可测量方法作为参数的执行类

时间:2019-04-26 19:56:15

标签: java execution-time

在C#中衡量某种算法的执行时间的人可以使用该类

public class ComplexityCounters
 {
    public static TimeSpan Measure(Action method)
    {
        var stopwatch = new Stopwatch();
        stopwatch.Start();
        method.Invoke();
        stopwatch.Stop();
        return stopwatch.Elapsed;
    }
  }

在Java中是否有将Action作为参数传递的类似物?该代码如何在Java中实现?

0 个答案:

没有答案