package org.kodejava.example.lang;
public class GetCurrentMethodName {
public static void main(String[] args) {
// Get the current executing method name
String methodName =
Thread.currentThread().getStackTrace()[1].getMethodName();
System.out.println("methodName = " + methodName);
GetCurrentMethodName obj = new GetCurrentMethodName();
obj.executeAMethod();
}
private void executeAMethod() {
// Get the current executing method name
String methodName =
Thread.currentThread().getStackTrace()[1].getMethodName();
System.out.println("methodName = " + methodName);
}
}
This program will print out the following string:
methodName = main
methodName = executeAMethod
Latest posts by Wayan (see all)
- How do I create a generic class in Java? - January 1, 2021
- How do I convert java.util.TimeZone to java.time.ZoneId? - April 25, 2020
- How do I get a list of all TimeZones Ids using Java 8? - April 25, 2020