java 打印函数名称

String  _thi sMethodName =   new Exception().getStackTrace()[0].getMethodName();// 获得当前的方法名

System.out.println(_thisMethodName);


Android下:

String  _thi sMethodName =   new Exception().getStackTrace()[0].getMethodName();// 获得当前的方法名

Log.v("TAG", " ===> " + sMethodName + "()" ;


需要其它信息,可以跟踪查看一下new Exception().getStackTrace()方法的返回值

你可能感兴趣的:(java,android,exception,String)