Is there a way to get the name of the currently executing method in Java?
|
|
|||||||||||
|
|
January 2009:
More in this question. Update December 2011: bluish comments:
virgo47's answer (upvoted) actually computes the right index to apply in order to get back the method name. |
|||||||||||||
|
|
We used this code to mitigate potential variability in stack trace index - now just call methodName util:
Seems overengineered, but we had some fixed number for JDK 1.5 and were a bit surprised it changed when we moved to JDK 1.6. Now it's the same in Java 6/7, but you just never know. It is not proof to changes in that index during runtime - but hopefully HotSpot doesn't do that bad. :-) |
|||||||||||
|
|
Technically this will work...
However, a new anonymous inner class will be created for each use! This will lead to a bunch of garbage .class files in your output program. Might be an acceptable debug trick, but don't use this for real. |
|||||||||||||||
|
|
Use the following Code :
|
||||
|
|
|
The fastest way I found is that:
It accesses the native method getStackTraceElement(int depth) directly. And stores the accessible Method in a static variable. |
|||||||
|
|
This is an expansion on virgo47's answer (above). It provides some static methods to get the current and invoking class / method names.
|
|||
|
|
name will have value foo. |
|||
|
|
