我有两种方法:
class C1
{
void m1() {//does sth}
void m2(int x1, int x2) {//does sth}
}
//记录任何方法花费的时间
logMethodExecTime(m1);
logMethodExecTime(m2);
不确定如何使用 JDK8 功能接口和方法引用来为方法 'logMethodExecTime' 定义正确的语法?
以下不起作用:
class Utils
{
public static void logMethodExecTime(Supplier<Void> s)
{
long start = System.nanoTime();
s.get();
long end = System.nanoTime();
System.out.println(((end-start)/1000000000d) + " secs");
}
}
和调用:
C1 c = new C1();
Utils.logMethodExecTime(c::m1);
//Also how can we have one single definition of 'logMethodExecTime'
//to accept any method with any number of args
Utils.logMethodExecTime(c::m2);