'실행되는 함수내에서 Method명과 Class명 알아내기'에 해당되는 글 1건

  1. 2012.09.15 실행되는 함수내에서 Method명과 Class명 알아내기
01.JAVA/Java2012. 9. 15. 08:01
반응형

StackTraceElement STE = Thread.currentThread().getStackTrace()[1];

String className = STE.getClassName();
String methodName = STE.getMethodName());

 

Posted by 1010