Can I pass a Method as parameter of another method in java?
I am trying to measure the execution time for several methods. so I was thinking to make a method instead of duplicate same code many times. Here is my code: private void MeasureExecutionTime(Method m) { startTime = System.nanoTime(); try { m(); } finally { endTime = System.nanoTime(); } elapsedTime = endTime - startTime; System.out.println("This takes " + elapsedTime + " ns."); } Suppose I have myMethod() , how can I use MeasureExecutionTime() to measure myMethod 's execution time? Methods aren't first-class objects in Java, so they can't be passed as parameters. You could use wrap your