常用API Integer类
Integer类概述
包装一个对象中的原始类型 int 的值
Integer类构造方法
方法名 说明
public Integer(int value) 根据 int 值创建 Integer 对象(过时)
public Integer(String s) 根据 String 值创建 Integer 对象(过时)
public static Integer valueOf(int i) 返回表示指定的 int 值的 Integer 实例
public static Integer valueOf(String s) 返回一个保存指定值的 Integer 对象 String
标签:String,19,valueOf,int,static,Integer,public From: https://www.cnblogs.com/chukjbgg333/p/17642587.html