常用Java片段

1. 字符串与整型的相互转换

  1. String a = String.valueOf(2);   //integer to numeric string  
  2. int i = Integer.parseInt(a); //numeric string to an int 

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();
}
}

3,

常用Java片段,布布扣,bubuko.com

常用Java片段

上一篇:javascript:void(0)的问题


下一篇:Python Tutorial 学习(三)--An Informal Introduction to Python