1.基本类型和包装类 基本类型和包装类可通过自动装箱和拆箱实现. int i = 24; Integer a = new Integer(i); //手动装箱 Integer b = i; //自动装箱 int x = a; //自动拆箱 int y = a.intValue(); //受到拆箱 2.基本类型转String a.使用包装类的toString方法 int i =24; String str1 = Integer.toString(i); b.使用String类的valueOf方法 …