1. 字符串与整型的相互转换
2,得到当前方法的名字
public class MethodName {
private void IamAMethod(){
String methodName = Thread.currentThread().getStackTrace()[1].getMethodName();
System.out.println(methodName);
}
public static void main(String[] args) {
MethodName mName=new MethodName();
mName.IamAMethod();
}
}
原文地址:http://www.cnblogs.com/vonk/p/3853855.html