在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中实现?