JAvaコードは、メソッドがどのクラス、どのメソッド、どの行で呼び出されるかを知る
1177 ワード
public class TestMain {
public static void main(String[] args){
hello();
}
public static void hello() {
String className = Thread.currentThread().getStackTrace()[2].getClassName();
String methodName = Thread.currentThread().getStackTrace()[2].getMethodName();
int lineNumber = Thread.currentThread().getStackTrace()[2].getLineNumber();
System.out.println(className);
System.out.println(methodName);
System.out.println(lineNumber);
}
}