首页 > 代码库 > String,Integer,int类型之间的相互转换
String,Integer,int类型之间的相互转换
String, Integer, int 三种类型之间可以两两进行转换
1. 基本数据类型到包装数据类型的转换
int -> Integer (两种方法)
Integer it1 = new Integer(int a); //封装的基本原理
Integer it2 = Integer.valueOf(int a);
int -> String
String s2=10+"";
2. 包装数据类型到基本数据类型的转换
String -> int
int i4=Integer.parseInt("123"); //注意一定要是纯数字
Integer -> int
int i2=i1.intValue(); //拆箱
3. 包装数据类型到包装数据类型的转换
String-->Integer
Integer i3=Integer.valueOf("10");//返回一个表示指定的String值的Integer实例
Integer-->String
String s1=i3.toString();//返回一个指定的字符串
String,Integer,int类型之间的相互转换
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。