将字串 String 转换成整数 int 两种方法: 1).int i = Integer.parseInt("111"); 或 i = Integer.parseInt([String],[int radix]); 2). int i = Integer.valueOf("111").intValue(); 其它 Double, Float, Long 的方法大同小异. 将整数 int 转换成字串 String A. 有3种方法: 1.) String s = S…
1.用枚举类型替代int枚举类型和string枚举类型 public class Show { // Int枚举类型 // public static final int APPLE_FUJI = 0; // public static final int APPLE_PIPPIN = 1; // public static final int APPLE_GRANNY_SMITH = 2; public enum Apple { FUJI, PIPPIN, GR…