Java中的Integer 包装类,如何将基本数据类型int,变成字符串,
/* * Integer类,封装基本数据类型int,提高大量的方法 * 将字符串转成基本数据类型int * */ public class IntegerDemo { public static void main(String[] args) { function2(); }/* * Integer类的构造方法 Integer(Strin...